(Simplified) Blackjack - With VW to Train Q Function


In [9]:
from games.blackjack.blackjack import BlackJack
from bandits import BanditAlgorithm
import pandas as pd
import rl_learning as rl
from IPython.display import display, HTML
import cPickle as pickle

In [10]:
def test_training_TD_for_blackjack(model_class, epochs=1000):
    blackjack = BlackJack()
    policy, model = rl.train_reinforcement_strategy_temporal_difference(epochs=epochs, game_obs=blackjack, model_class=model_class)
    # Add ipython notebook 3D ghaph
    return policy, model

def test_policy(game_obs, model=None):
    print "---------- Testing policy:-----------"
    banditAlgorithm = BanditAlgorithm(params=0.1)
    game_obs.initiate_game()
    print "Initial state:"
    print game_obs.state
    move = 1
    # Unpickle if model obs not provided
    if not model:
        model = pickle.load(open(game_obs.base_folder_name + '/model_obs.pkl', mode='rb'))

    if model.model_class == 'vw_python':
        from vowpal_wabbit import pyvw
        model.model = pyvw.vw("--quiet -i {0}".format(model.model_path))
    while game_obs.game_status == 'in process':
        new_qval_table = banditAlgorithm.return_decision_reward_tuples(game_obs.state, model)
        best_action, value_estimate = banditAlgorithm.return_decision_with_max_reward(new_qval_table)
        print('Move #: %s; Taking action: %s' % (move, best_action))
        reward = game_obs.play(best_action)
        print game_obs.state
        if game_obs.game_status != 'in process': print "Summary: " + game_obs.game_status + " :Player Reward: " + str(reward)
        move += 1

        if move > 15:
            print "Too many moves"
            break

In [15]:
policy, model = test_training_TD_for_blackjack(model_class='vw_python', epochs=10000)


Game #: 0
player busts and loses in 2 moves
Game #: 1
player wins in 0 moves
Game #: 2
dealer busts and player wins in 1 moves
Game #: 3
dealer busts and player wins in 1 moves
Game #: 4
player loses in 1 moves
Game #: 5
player busts and loses in 1 moves
Game #: 6
dealer busts and player wins in 2 moves
Game #: 7
player busts and loses in 1 moves
Game #: 8
player loses in 1 moves
Game #: 9
dealer busts and player wins in 1 moves
Game #: 10
player wins in 1 moves
Game #: 11
player busts and loses in 1 moves
Game #: 12
player busts and loses in 1 moves
Game #: 13
player busts and loses in 1 moves
Game #: 14
player wins in 1 moves
Game #: 15
player wins in 2 moves
Game #: 16
player loses in 1 moves
Game #: 17
dealer busts and player wins in 1 moves
Game #: 18
player loses in 1 moves
Game #: 19
player wins in 2 moves
Game #: 20
dealer busts and player wins in 1 moves
Game #: 21
player wins in 0 moves
Game #: 22
player loses in 1 moves
Game #: 23
player loses in 2 moves
Game #: 24
player busts and loses in 2 moves
Game #: 25
player busts and loses in 1 moves
Game #: 26
player loses in 1 moves
Game #: 27
player loses in 1 moves
Game #: 28
dealer busts and player wins in 1 moves
Game #: 29
player busts and loses in 1 moves
Game #: 30
player loses in 1 moves
Game #: 31
player busts and loses in 1 moves
Game #: 32
dealer busts and player wins in 1 moves
Game #: 33
player wins in 0 moves
Game #: 34
dealer busts and player wins in 1 moves
Game #: 35
player loses in 1 moves
Game #: 36
player busts and loses in 1 moves
Game #: 37
player wins in 2 moves
Game #: 38
player loses in 1 moves
Game #: 39
player busts and loses in 1 moves
Game #: 40
player loses in 1 moves
Game #: 41
player busts and loses in 1 moves
Game #: 42
player busts and loses in 1 moves
Game #: 43
player loses in 2 moves
Game #: 44
player busts and loses in 1 moves
Game #: 45
player loses in 1 moves
Game #: 46
player busts and loses in 1 moves
Game #: 47
player wins in 1 moves
Game #: 48
player loses in 1 moves
Game #: 49
player busts and loses in 1 moves
Game #: 50
player busts and loses in 1 moves
Game #: 51
player loses in 1 moves
Game #: 52
player loses in 2 moves
Game #: 53
dealer busts and player wins in 2 moves
Game #: 54
dealer busts and player wins in 2 moves
Game #: 55
player loses in 1 moves
Game #: 56
player loses in 1 moves
Game #: 57
dealer busts and player wins in 1 moves
Game #: 58
player wins in 0 moves
Game #: 59
player wins in 1 moves
Game #: 60
player busts and loses in 1 moves
Game #: 61
player busts and loses in 2 moves
Game #: 62
dealer busts and player wins in 1 moves
Game #: 63
player wins in 0 moves
Game #: 64
dealer busts and player wins in 1 moves
Game #: 65
player busts and loses in 1 moves
Game #: 66
player loses in 1 moves
Game #: 67
player loses in 1 moves
Game #: 68
player busts and loses in 2 moves
Game #: 69
player loses in 1 moves
Game #: 70
player busts and loses in 2 moves
Game #: 71
player wins in 0 moves
Game #: 72
player loses in 1 moves
Game #: 73
player loses in 1 moves
Game #: 74
dealer busts and player wins in 1 moves
Game #: 75
player busts and loses in 2 moves
Game #: 76
player loses in 1 moves
Game #: 77
dealer busts and player wins in 1 moves
Game #: 78
dealer busts and player wins in 2 moves
Game #: 79
dealer busts and player wins in 1 moves
Game #: 80
dealer busts and player wins in 1 moves
Game #: 81
player loses in 1 moves
Game #: 82
player loses in 1 moves
Game #: 83
player loses in 1 moves
Game #: 84
dealer busts and player wins in 2 moves
Game #: 85
player loses in 1 moves
Game #: 86
player busts and loses in 1 moves
Game #: 87
player loses in 1 moves
Game #: 88
player wins in 0 moves
Game #: 89
player busts and loses in 1 moves
Game #: 90
player loses in 2 moves
Game #: 91
player loses in 1 moves
Game #: 92
player busts and loses in 2 moves
Game #: 93
player loses in 1 moves
Game #: 94
player busts and loses in 2 moves
Game #: 95
dealer busts and player wins in 2 moves
Game #: 96
player busts and loses in 1 moves
Game #: 97
player loses in 1 moves
Game #: 98
player busts and loses in 1 moves
Game #: 99
player busts and loses in 1 moves
Game #: 100
player wins in 1 moves
Game #: 101
player wins in 2 moves
Game #: 102
player busts and loses in 1 moves
Game #: 103
player busts and loses in 1 moves
Game #: 104
player busts and loses in 1 moves
Game #: 105
dealer busts and player wins in 1 moves
Game #: 106
player busts and loses in 1 moves
Game #: 107
player wins in 2 moves
Game #: 108
dealer busts and player wins in 1 moves
Game #: 109
player loses in 1 moves
Game #: 110
player busts and loses in 1 moves
Game #: 111
player loses in 1 moves
Game #: 112
player wins in 1 moves
Game #: 113
player busts and loses in 1 moves
Game #: 114
dealer busts and player wins in 1 moves
Game #: 115
player busts and loses in 1 moves
Game #: 116
player loses in 1 moves
Game #: 117
dealer busts and player wins in 1 moves
Game #: 118
player busts and loses in 1 moves
Game #: 119
dealer busts and player wins in 1 moves
Game #: 120
dealer busts and player wins in 1 moves
Game #: 121
dealer busts and player wins in 2 moves
Game #: 122
player busts and loses in 1 moves
Game #: 123
player loses in 1 moves
Game #: 124
player busts and loses in 1 moves
Game #: 125
player wins in 1 moves
Game #: 126
dealer busts and player wins in 1 moves
Game #: 127
dealer busts and player wins in 1 moves
Game #: 128
player loses in 1 moves
Game #: 129
player loses in 1 moves
Game #: 130
player loses in 1 moves
Game #: 131
dealer busts and player wins in 3 moves
Game #: 132
dealer busts and player wins in 2 moves
Game #: 133
player busts and loses in 1 moves
Game #: 134
player loses in 1 moves
Game #: 135
player loses in 1 moves
Game #: 136
player busts and loses in 2 moves
Game #: 137
player wins in 0 moves
Game #: 138
dealer busts and player wins in 1 moves
Game #: 139
player loses in 2 moves
Game #: 140
player loses in 1 moves
Game #: 141
draw in 2 moves
Game #: 142
player loses in 1 moves
Game #: 143
player loses in 1 moves
Game #: 144
player loses in 1 moves
Game #: 145
player loses in 1 moves
Game #: 146
player wins in 1 moves
Game #: 147
dealer busts and player wins in 1 moves
Game #: 148
player loses in 1 moves
Game #: 149
player wins in 1 moves
Game #: 150
player busts and loses in 1 moves
Game #: 151
player loses in 1 moves
Game #: 152
player busts and loses in 1 moves
Game #: 153
player busts and loses in 1 moves
Game #: 154
player loses in 1 moves
Game #: 155
player loses in 1 moves
Game #: 156
player busts and loses in 2 moves
Game #: 157
player busts and loses in 2 moves
Game #: 158
player busts and loses in 1 moves
Game #: 159
player loses in 1 moves
Game #: 160
player loses in 1 moves
Game #: 161
player loses in 1 moves
Game #: 162
player busts and loses in 1 moves
Game #: 163
player busts and loses in 2 moves
Game #: 164
player loses in 1 moves
Game #: 165
player busts and loses in 1 moves
Game #: 166
player busts and loses in 1 moves
Game #: 167
dealer busts and player wins in 2 moves
Game #: 168
player busts and loses in 1 moves
Game #: 169
player wins in 1 moves
Game #: 170
player wins in 1 moves
Game #: 171
dealer busts and player wins in 1 moves
Game #: 172
player busts and loses in 2 moves
Game #: 173
player busts and loses in 1 moves
Game #: 174
player wins in 0 moves
Game #: 175
player loses in 1 moves
Game #: 176
player busts and loses in 1 moves
Game #: 177
player wins in 0 moves
Game #: 178
player loses in 1 moves
Game #: 179
player busts and loses in 1 moves
Game #: 180
player busts and loses in 1 moves
Game #: 181
player busts and loses in 1 moves
Game #: 182
dealer busts and player wins in 1 moves
Game #: 183
player loses in 1 moves
Game #: 184
player loses in 1 moves
Game #: 185
player wins in 0 moves
Game #: 186
player busts and loses in 3 moves
Game #: 187
player loses in 2 moves
Game #: 188
player wins in 1 moves
Game #: 189
player wins in 0 moves
Game #: 190
player busts and loses in 1 moves
Game #: 191
player wins in 0 moves
Game #: 192
player loses in 1 moves
Game #: 193
dealer busts and player wins in 1 moves
Game #: 194
player loses in 1 moves
Game #: 195
player loses in 2 moves
Game #: 196
player loses in 1 moves
Game #: 197
draw in 1 moves
Game #: 198
player busts and loses in 1 moves
Game #: 199
player busts and loses in 3 moves
Game #: 200
player loses in 1 moves
Game #: 201
player loses in 1 moves
Game #: 202
player busts and loses in 1 moves
Game #: 203
player busts and loses in 1 moves
Game #: 204
player busts and loses in 1 moves
Game #: 205
player busts and loses in 1 moves
Game #: 206
player loses in 1 moves
Game #: 207
player busts and loses in 2 moves
Game #: 208
player loses in 1 moves
Game #: 209
player wins in 0 moves
Game #: 210
player wins in 1 moves
Game #: 211
player wins in 1 moves
Game #: 212
player busts and loses in 2 moves
Game #: 213
player busts and loses in 1 moves
Game #: 214
player loses in 2 moves
Game #: 215
player wins in 2 moves
Game #: 216
player loses in 1 moves
Game #: 217
player wins in 1 moves
Game #: 218
player loses in 1 moves
Game #: 219
dealer busts and player wins in 1 moves
Game #: 220
player loses in 3 moves
Game #: 221
dealer busts and player wins in 1 moves
Game #: 222
player wins in 1 moves
Game #: 223
player busts and loses in 1 moves
Game #: 224
player loses in 1 moves
Game #: 225
dealer busts and player wins in 1 moves
Game #: 226
player loses in 1 moves
Game #: 227
player loses in 1 moves
Game #: 228
draw in 2 moves
Game #: 229
dealer busts and player wins in 1 moves
Game #: 230
dealer busts and player wins in 1 moves
Game #: 231
player loses in 1 moves
Game #: 232
player busts and loses in 1 moves
Game #: 233
player busts and loses in 1 moves
Game #: 234
player wins in 0 moves
Game #: 235
player loses in 1 moves
Game #: 236
player busts and loses in 4 moves
Game #: 237
player busts and loses in 1 moves
Game #: 238
player busts and loses in 1 moves
Game #: 239
player wins in 1 moves
Game #: 240
dealer busts and player wins in 1 moves
Game #: 241
player wins in 0 moves
Game #: 242
dealer busts and player wins in 2 moves
Game #: 243
player loses in 1 moves
Game #: 244
player busts and loses in 2 moves
Game #: 245
player busts and loses in 2 moves
Game #: 246
player busts and loses in 1 moves
Game #: 247
player busts and loses in 1 moves
Game #: 248
player loses in 1 moves
Game #: 249
player loses in 1 moves
Game #: 250
player busts and loses in 1 moves
Game #: 251
player loses in 1 moves
Game #: 252
player busts and loses in 1 moves
Game #: 253
player busts and loses in 1 moves
Game #: 254
player busts and loses in 2 moves
Game #: 255
draw in 1 moves
Game #: 256
player busts and loses in 1 moves
Game #: 257
player busts and loses in 1 moves
Game #: 258
player busts and loses in 1 moves
Game #: 259
player wins in 1 moves
Game #: 260
player loses in 1 moves
Game #: 261
player wins in 1 moves
Game #: 262
player busts and loses in 1 moves
Game #: 263
dealer busts and player wins in 1 moves
Game #: 264
player wins in 0 moves
Game #: 265
player wins in 2 moves
Game #: 266
player wins in 1 moves
Game #: 267
player busts and loses in 2 moves
Game #: 268
dealer busts and player wins in 2 moves
Game #: 269
player busts and loses in 1 moves
Game #: 270
dealer busts and player wins in 2 moves
Game #: 271
player busts and loses in 1 moves
Game #: 272
dealer busts and player wins in 1 moves
Game #: 273
player busts and loses in 1 moves
Game #: 274
player wins in 1 moves
Game #: 275
player busts and loses in 1 moves
Game #: 276
player busts and loses in 1 moves
Game #: 277
dealer busts and player wins in 1 moves
Game #: 278
player loses in 1 moves
Game #: 279
player busts and loses in 1 moves
Game #: 280
player busts and loses in 3 moves
Game #: 281
player loses in 1 moves
Game #: 282
player wins in 0 moves
Game #: 283
dealer busts and player wins in 1 moves
Game #: 284
player loses in 1 moves
Game #: 285
dealer busts and player wins in 2 moves
Game #: 286
player busts and loses in 1 moves
Game #: 287
player busts and loses in 1 moves
Game #: 288
player busts and loses in 1 moves
Game #: 289
draw in 1 moves
Game #: 290
player loses in 1 moves
Game #: 291
player loses in 1 moves
Game #: 292
player loses in 1 moves
Game #: 293
draw in 1 moves
Game #: 294
player wins in 0 moves
Game #: 295
dealer busts and player wins in 2 moves
Game #: 296
player loses in 2 moves
Game #: 297
player wins in 0 moves
Game #: 298
player wins in 0 moves
Game #: 299
player loses in 1 moves
Game #: 300
dealer busts and player wins in 1 moves
Game #: 301
dealer busts and player wins in 1 moves
Game #: 302
player loses in 1 moves
Game #: 303
player loses in 1 moves
Game #: 304
dealer busts and player wins in 1 moves
Game #: 305
player busts and loses in 1 moves
Game #: 306
player busts and loses in 1 moves
Game #: 307
player loses in 1 moves
Game #: 308
player busts and loses in 2 moves
Game #: 309
player busts and loses in 1 moves
Game #: 310
player busts and loses in 1 moves
Game #: 311
player loses in 1 moves
Game #: 312
player busts and loses in 2 moves
Game #: 313
player busts and loses in 1 moves
Game #: 314
player busts and loses in 1 moves
Game #: 315
player loses in 1 moves
Game #: 316
player busts and loses in 2 moves
Game #: 317
player busts and loses in 1 moves
Game #: 318
player busts and loses in 1 moves
Game #: 319
player wins in 1 moves
Game #: 320
player loses in 1 moves
Game #: 321
player loses in 1 moves
Game #: 322
player busts and loses in 2 moves
Game #: 323
player loses in 1 moves
Game #: 324
dealer busts and player wins in 1 moves
Game #: 325
player wins in 2 moves
Game #: 326
dealer busts and player wins in 1 moves
Game #: 327
player loses in 1 moves
Game #: 328
player loses in 1 moves
Game #: 329
player wins in 0 moves
Game #: 330
player loses in 1 moves
Game #: 331
player loses in 1 moves
Game #: 332
player loses in 1 moves
Game #: 333
player busts and loses in 1 moves
Game #: 334
player loses in 2 moves
Game #: 335
player busts and loses in 1 moves
Game #: 336
player busts and loses in 2 moves
Game #: 337
player busts and loses in 1 moves
Game #: 338
dealer busts and player wins in 1 moves
Game #: 339
player wins in 0 moves
Game #: 340
player wins in 2 moves
Game #: 341
player loses in 1 moves
Game #: 342
player loses in 1 moves
Game #: 343
draw in 2 moves
Game #: 344
player busts and loses in 1 moves
Game #: 345
player loses in 1 moves
Game #: 346
player loses in 1 moves
Game #: 347
draw in 1 moves
Game #: 348
player busts and loses in 1 moves
Game #: 349
player busts and loses in 1 moves
Game #: 350
player busts and loses in 1 moves
Game #: 351
player loses in 1 moves
Game #: 352
player loses in 2 moves
Game #: 353
player busts and loses in 1 moves
Game #: 354
player wins in 0 moves
Game #: 355
dealer busts and player wins in 1 moves
Game #: 356
player loses in 1 moves
Game #: 357
player loses in 1 moves
Game #: 358
player busts and loses in 1 moves
Game #: 359
player loses in 1 moves
Game #: 360
dealer busts and player wins in 1 moves
Game #: 361
draw in 1 moves
Game #: 362
player busts and loses in 1 moves
Game #: 363
player loses in 1 moves
Game #: 364
player loses in 1 moves
Game #: 365
player loses in 1 moves
Game #: 366
dealer busts and player wins in 1 moves
Game #: 367
player wins in 1 moves
Game #: 368
player wins in 2 moves
Game #: 369
player loses in 1 moves
Game #: 370
player loses in 1 moves
Game #: 371
draw in 1 moves
Game #: 372
dealer busts and player wins in 1 moves
Game #: 373
player busts and loses in 2 moves
Game #: 374
player wins in 0 moves
Game #: 375
player wins in 1 moves
Game #: 376
player busts and loses in 2 moves
Game #: 377
player busts and loses in 1 moves
Game #: 378
player loses in 1 moves
Game #: 379
player loses in 1 moves
Game #: 380
player busts and loses in 2 moves
Game #: 381
player loses in 1 moves
Game #: 382
player loses in 1 moves
Game #: 383
player loses in 1 moves
Game #: 384
player loses in 1 moves
Game #: 385
player loses in 1 moves
Game #: 386
player loses in 2 moves
Game #: 387
player busts and loses in 1 moves
Game #: 388
player wins in 1 moves
Game #: 389
dealer busts and player wins in 2 moves
Game #: 390
player busts and loses in 2 moves
Game #: 391
player loses in 2 moves
Game #: 392
player busts and loses in 2 moves
Game #: 393
player wins in 0 moves
Game #: 394
player busts and loses in 1 moves
Game #: 395
player loses in 1 moves
Game #: 396
player busts and loses in 1 moves
Game #: 397
player busts and loses in 1 moves
Game #: 398
player busts and loses in 1 moves
Game #: 399
dealer busts and player wins in 1 moves
Game #: 400
player loses in 1 moves
Game #: 401
player busts and loses in 1 moves
Game #: 402
player busts and loses in 1 moves
Game #: 403
player wins in 1 moves
Game #: 404
player loses in 1 moves
Game #: 405
player busts and loses in 4 moves
Game #: 406
player busts and loses in 1 moves
Game #: 407
player loses in 1 moves
Game #: 408
player busts and loses in 1 moves
Game #: 409
player busts and loses in 1 moves
Game #: 410
player wins in 1 moves
Game #: 411
player busts and loses in 1 moves
Game #: 412
player loses in 1 moves
Game #: 413
player loses in 1 moves
Game #: 414
player loses in 1 moves
Game #: 415
player busts and loses in 1 moves
Game #: 416
player busts and loses in 2 moves
Game #: 417
draw in 1 moves
Game #: 418
dealer busts and player wins in 1 moves
Game #: 419
draw in 1 moves
Game #: 420
dealer busts and player wins in 2 moves
Game #: 421
draw in 1 moves
Game #: 422
dealer busts and player wins in 1 moves
Game #: 423
player loses in 1 moves
Game #: 424
player loses in 1 moves
Game #: 425
dealer busts and player wins in 1 moves
Game #: 426
player busts and loses in 1 moves
Game #: 427
player wins in 1 moves
Game #: 428
player wins in 0 moves
Game #: 429
player loses in 1 moves
Game #: 430
player wins in 1 moves
Game #: 431
player wins in 0 moves
Game #: 432
player loses in 1 moves
Game #: 433
player loses in 1 moves
Game #: 434
player loses in 1 moves
Game #: 435
player busts and loses in 1 moves
Game #: 436
player busts and loses in 1 moves
Game #: 437
player busts and loses in 1 moves
Game #: 438
player loses in 1 moves
Game #: 439
dealer busts and player wins in 1 moves
Game #: 440
player busts and loses in 1 moves
Game #: 441
dealer busts and player wins in 1 moves
Game #: 442
player busts and loses in 1 moves
Game #: 443
player wins in 0 moves
Game #: 444
player busts and loses in 1 moves
Game #: 445
player loses in 1 moves
Game #: 446
player loses in 1 moves
Game #: 447
player wins in 0 moves
Game #: 448
player loses in 1 moves
Game #: 449
player loses in 2 moves
Game #: 450
player loses in 1 moves
Game #: 451
player busts and loses in 1 moves
Game #: 452
dealer busts and player wins in 1 moves
Game #: 453
player loses in 1 moves
Game #: 454
player loses in 1 moves
Game #: 455
player busts and loses in 1 moves
Game #: 456
player wins in 2 moves
Game #: 457
player loses in 1 moves
Game #: 458
dealer busts and player wins in 1 moves
Game #: 459
player busts and loses in 2 moves
Game #: 460
player busts and loses in 1 moves
Game #: 461
player busts and loses in 1 moves
Game #: 462
player loses in 1 moves
Game #: 463
dealer busts and player wins in 1 moves
Game #: 464
player busts and loses in 1 moves
Game #: 465
player wins in 2 moves
Game #: 466
player loses in 1 moves
Game #: 467
dealer busts and player wins in 1 moves
Game #: 468
dealer busts and player wins in 2 moves
Game #: 469
player busts and loses in 1 moves
Game #: 470
player wins in 0 moves
Game #: 471
player loses in 1 moves
Game #: 472
dealer busts and player wins in 1 moves
Game #: 473
player busts and loses in 1 moves
Game #: 474
player loses in 1 moves
Game #: 475
dealer busts and player wins in 1 moves
Game #: 476
draw in 1 moves
Game #: 477
player loses in 1 moves
Game #: 478
player busts and loses in 2 moves
Game #: 479
player loses in 1 moves
Game #: 480
player loses in 1 moves
Game #: 481
player busts and loses in 1 moves
Game #: 482
player loses in 1 moves
Game #: 483
player loses in 2 moves
Game #: 484
player busts and loses in 3 moves
Game #: 485
player wins in 1 moves
Game #: 486
dealer busts and player wins in 2 moves
Game #: 487
player busts and loses in 2 moves
Game #: 488
player loses in 1 moves
Game #: 489
player loses in 1 moves
Game #: 490
player loses in 2 moves
Game #: 491
player wins in 1 moves
Game #: 492
dealer busts and player wins in 1 moves
Game #: 493
player loses in 1 moves
Game #: 494
player loses in 1 moves
Game #: 495
player loses in 1 moves
Game #: 496
player busts and loses in 1 moves
Game #: 497
player busts and loses in 2 moves
Game #: 498
player busts and loses in 2 moves
Game #: 499
player wins in 1 moves
Game #: 500
player loses in 1 moves
Game #: 501
player busts and loses in 1 moves
Game #: 502
player busts and loses in 1 moves
Game #: 503
player wins in 1 moves
Game #: 504
player wins in 1 moves
Game #: 505
player loses in 1 moves
Game #: 506
player loses in 1 moves
Game #: 507
player busts and loses in 1 moves
Game #: 508
player busts and loses in 1 moves
Game #: 509
player busts and loses in 1 moves
Game #: 510
player busts and loses in 1 moves
Game #: 511
player busts and loses in 1 moves
Game #: 512
player busts and loses in 1 moves
Game #: 513
player busts and loses in 1 moves
Game #: 514
player loses in 1 moves
Game #: 515
dealer busts and player wins in 1 moves
Game #: 516
player busts and loses in 1 moves
Game #: 517
dealer busts and player wins in 2 moves
Game #: 518
draw in 1 moves
Game #: 519
player loses in 2 moves
Game #: 520
player loses in 1 moves
Game #: 521
player busts and loses in 1 moves
Game #: 522
dealer busts and player wins in 1 moves
Game #: 523
player busts and loses in 1 moves
Game #: 524
player busts and loses in 2 moves
Game #: 525
player loses in 1 moves
Game #: 526
player loses in 1 moves
Game #: 527
draw in 1 moves
Game #: 528
player wins in 2 moves
Game #: 529
player loses in 1 moves
Game #: 530
player loses in 1 moves
Game #: 531
player loses in 1 moves
Game #: 532
dealer busts and player wins in 1 moves
Game #: 533
player busts and loses in 1 moves
Game #: 534
dealer busts and player wins in 1 moves
Game #: 535
player busts and loses in 1 moves
Game #: 536
player loses in 2 moves
Game #: 537
player busts and loses in 2 moves
Game #: 538
player loses in 1 moves
Game #: 539
dealer busts and player wins in 1 moves
Game #: 540
player busts and loses in 1 moves
Game #: 541
player loses in 1 moves
Game #: 542
player loses in 1 moves
Game #: 543
dealer busts and player wins in 1 moves
Game #: 544
dealer busts and player wins in 1 moves
Game #: 545
player wins in 1 moves
Game #: 546
player busts and loses in 1 moves
Game #: 547
dealer busts and player wins in 2 moves
Game #: 548
player busts and loses in 2 moves
Game #: 549
draw in 1 moves
Game #: 550
dealer busts and player wins in 1 moves
Game #: 551
player busts and loses in 1 moves
Game #: 552
player loses in 1 moves
Game #: 553
player loses in 1 moves
Game #: 554
player busts and loses in 3 moves
Game #: 555
player busts and loses in 2 moves
Game #: 556
player wins in 1 moves
Game #: 557
player busts and loses in 1 moves
Game #: 558
player busts and loses in 1 moves
Game #: 559
player loses in 1 moves
Game #: 560
dealer busts and player wins in 1 moves
Game #: 561
player loses in 1 moves
Game #: 562
player loses in 1 moves
Game #: 563
player wins in 0 moves
Game #: 564
dealer busts and player wins in 2 moves
Game #: 565
player busts and loses in 3 moves
Game #: 566
draw in 2 moves
Game #: 567
player busts and loses in 1 moves
Game #: 568
player wins in 0 moves
Game #: 569
player busts and loses in 1 moves
Game #: 570
dealer busts and player wins in 1 moves
Game #: 571
player wins in 0 moves
Game #: 572
player busts and loses in 1 moves
Game #: 573
player busts and loses in 1 moves
Game #: 574
player busts and loses in 1 moves
Game #: 575
player busts and loses in 1 moves
Game #: 576
player loses in 1 moves
Game #: 577
player loses in 1 moves
Game #: 578
player loses in 1 moves
Game #: 579
player loses in 1 moves
Game #: 580
draw in 3 moves
Game #: 581
draw in 1 moves
Game #: 582
dealer busts and player wins in 1 moves
Game #: 583
player busts and loses in 1 moves
Game #: 584
player loses in 1 moves
Game #: 585
player busts and loses in 1 moves
Game #: 586
player busts and loses in 2 moves
Game #: 587
player loses in 1 moves
Game #: 588
player loses in 1 moves
Game #: 589
player busts and loses in 1 moves
Game #: 590
player busts and loses in 1 moves
Game #: 591
player busts and loses in 1 moves
Game #: 592
player loses in 2 moves
Game #: 593
player wins in 0 moves
Game #: 594
player busts and loses in 2 moves
Game #: 595
player busts and loses in 2 moves
Game #: 596
player busts and loses in 1 moves
Game #: 597
dealer busts and player wins in 1 moves
Game #: 598
player wins in 0 moves
Game #: 599
player wins in 2 moves
Game #: 600
player wins in 1 moves
Game #: 601
player busts and loses in 2 moves
Game #: 602
player busts and loses in 1 moves
Game #: 603
dealer busts and player wins in 1 moves
Game #: 604
player busts and loses in 2 moves
Game #: 605
draw in 2 moves
Game #: 606
dealer busts and player wins in 1 moves
Game #: 607
player busts and loses in 2 moves
Game #: 608
dealer busts and player wins in 1 moves
Game #: 609
player wins in 0 moves
Game #: 610
player wins in 0 moves
Game #: 611
dealer busts and player wins in 1 moves
Game #: 612
player loses in 1 moves
Game #: 613
dealer busts and player wins in 1 moves
Game #: 614
player wins in 1 moves
Game #: 615
player loses in 1 moves
Game #: 616
player wins in 1 moves
Game #: 617
player busts and loses in 1 moves
Game #: 618
player loses in 1 moves
Game #: 619
player loses in 1 moves
Game #: 620
player busts and loses in 2 moves
Game #: 621
dealer busts and player wins in 1 moves
Game #: 622
player loses in 1 moves
Game #: 623
dealer busts and player wins in 1 moves
Game #: 624
player loses in 1 moves
Game #: 625
player loses in 1 moves
Game #: 626
player loses in 1 moves
Game #: 627
player busts and loses in 1 moves
Game #: 628
player busts and loses in 1 moves
Game #: 629
player wins in 0 moves
Game #: 630
player wins in 1 moves
Game #: 631
player loses in 1 moves
Game #: 632
player busts and loses in 1 moves
Game #: 633
player wins in 1 moves
Game #: 634
player busts and loses in 1 moves
Game #: 635
player busts and loses in 2 moves
Game #: 636
player loses in 1 moves
Game #: 637
player loses in 1 moves
Game #: 638
dealer busts and player wins in 1 moves
Game #: 639
dealer busts and player wins in 1 moves
Game #: 640
player wins in 1 moves
Game #: 641
player loses in 1 moves
Game #: 642
player wins in 0 moves
Game #: 643
dealer busts and player wins in 1 moves
Game #: 644
dealer busts and player wins in 2 moves
Game #: 645
player loses in 1 moves
Game #: 646
player loses in 1 moves
Game #: 647
player busts and loses in 1 moves
Game #: 648
player loses in 1 moves
Game #: 649
player loses in 1 moves
Game #: 650
player loses in 1 moves
Game #: 651
player loses in 1 moves
Game #: 652
dealer busts and player wins in 1 moves
Game #: 653
player busts and loses in 1 moves
Game #: 654
player busts and loses in 1 moves
Game #: 655
player loses in 1 moves
Game #: 656
player wins in 1 moves
Game #: 657
player loses in 1 moves
Game #: 658
player busts and loses in 1 moves
Game #: 659
player loses in 1 moves
Game #: 660
player wins in 0 moves
Game #: 661
player busts and loses in 1 moves
Game #: 662
player loses in 1 moves
Game #: 663
player busts and loses in 1 moves
Game #: 664
player wins in 0 moves
Game #: 665
player busts and loses in 1 moves
Game #: 666
dealer busts and player wins in 1 moves
Game #: 667
player loses in 2 moves
Game #: 668
player busts and loses in 1 moves
Game #: 669
player loses in 1 moves
Game #: 670
player loses in 1 moves
Game #: 671
player busts and loses in 1 moves
Game #: 672
player wins in 1 moves
Game #: 673
draw in 2 moves
Game #: 674
player busts and loses in 1 moves
Game #: 675
player busts and loses in 2 moves
Game #: 676
player busts and loses in 1 moves
Game #: 677
player wins in 1 moves
Game #: 678
draw in 1 moves
Game #: 679
player loses in 3 moves
Game #: 680
dealer busts and player wins in 1 moves
Game #: 681
player wins in 1 moves
Game #: 682
dealer busts and player wins in 1 moves
Game #: 683
dealer busts and player wins in 1 moves
Game #: 684
player busts and loses in 2 moves
Game #: 685
player busts and loses in 2 moves
Game #: 686
player busts and loses in 1 moves
Game #: 687
player loses in 1 moves
Game #: 688
player busts and loses in 1 moves
Game #: 689
player loses in 1 moves
Game #: 690
dealer busts and player wins in 1 moves
Game #: 691
player loses in 1 moves
Game #: 692
player loses in 1 moves
Game #: 693
player busts and loses in 3 moves
Game #: 694
player loses in 1 moves
Game #: 695
player busts and loses in 2 moves
Game #: 696
dealer busts and player wins in 2 moves
Game #: 697
player loses in 1 moves
Game #: 698
draw in 2 moves
Game #: 699
player busts and loses in 1 moves
Game #: 700
dealer busts and player wins in 1 moves
Game #: 701
dealer busts and player wins in 1 moves
Game #: 702
player wins in 1 moves
Game #: 703
player wins in 0 moves
Game #: 704
player loses in 1 moves
Game #: 705
player loses in 1 moves
Game #: 706
player busts and loses in 1 moves
Game #: 707
player loses in 1 moves
Game #: 708
player loses in 1 moves
Game #: 709
player loses in 1 moves
Game #: 710
player wins in 0 moves
Game #: 711
player wins in 0 moves
Game #: 712
player loses in 1 moves
Game #: 713
player busts and loses in 2 moves
Game #: 714
dealer busts and player wins in 1 moves
Game #: 715
player loses in 2 moves
Game #: 716
player wins in 1 moves
Game #: 717
player loses in 1 moves
Game #: 718
player busts and loses in 1 moves
Game #: 719
player loses in 1 moves
Game #: 720
player busts and loses in 1 moves
Game #: 721
player loses in 1 moves
Game #: 722
player loses in 1 moves
Game #: 723
player wins in 2 moves
Game #: 724
player wins in 0 moves
Game #: 725
player loses in 1 moves
Game #: 726
player loses in 1 moves
Game #: 727
player wins in 0 moves
Game #: 728
player loses in 1 moves
Game #: 729
player wins in 1 moves
Game #: 730
player busts and loses in 1 moves
Game #: 731
player loses in 1 moves
Game #: 732
dealer busts and player wins in 1 moves
Game #: 733
player busts and loses in 1 moves
Game #: 734
player busts and loses in 1 moves
Game #: 735
player loses in 1 moves
Game #: 736
player busts and loses in 2 moves
Game #: 737
player loses in 1 moves
Game #: 738
player busts and loses in 1 moves
Game #: 739
dealer busts and player wins in 1 moves
Game #: 740
player busts and loses in 1 moves
Game #: 741
player busts and loses in 1 moves
Game #: 742
player busts and loses in 1 moves
Game #: 743
player loses in 1 moves
Game #: 744
dealer busts and player wins in 1 moves
Game #: 745
player loses in 1 moves
Game #: 746
draw in 1 moves
Game #: 747
player busts and loses in 1 moves
Game #: 748
draw in 1 moves
Game #: 749
player wins in 1 moves
Game #: 750
player wins in 1 moves
Game #: 751
player loses in 1 moves
Game #: 752
player loses in 1 moves
Game #: 753
player wins in 1 moves
Game #: 754
player busts and loses in 1 moves
Game #: 755
player busts and loses in 2 moves
Game #: 756
player loses in 1 moves
Game #: 757
draw in 1 moves
Game #: 758
player busts and loses in 1 moves
Game #: 759
player busts and loses in 1 moves
Game #: 760
player busts and loses in 1 moves
Game #: 761
player busts and loses in 2 moves
Game #: 762
player loses in 3 moves
Game #: 763
player loses in 1 moves
Game #: 764
player busts and loses in 1 moves
Game #: 765
dealer busts and player wins in 1 moves
Game #: 766
dealer busts and player wins in 1 moves
Game #: 767
player busts and loses in 1 moves
Game #: 768
player loses in 1 moves
Game #: 769
player busts and loses in 1 moves
Game #: 770
dealer busts and player wins in 2 moves
Game #: 771
dealer busts and player wins in 1 moves
Game #: 772
player loses in 1 moves
Game #: 773
player busts and loses in 1 moves
Game #: 774
draw in 1 moves
Game #: 775
draw in 1 moves
Game #: 776
player loses in 1 moves
Game #: 777
player busts and loses in 1 moves
Game #: 778
draw in 1 moves
Game #: 779
player busts and loses in 1 moves
Game #: 780
player busts and loses in 1 moves
Game #: 781
player wins in 0 moves
Game #: 782
player busts and loses in 1 moves
Game #: 783
player busts and loses in 2 moves
Game #: 784
player loses in 1 moves
Game #: 785
player wins in 0 moves
Game #: 786
player busts and loses in 1 moves
Game #: 787
player busts and loses in 1 moves
Game #: 788
player loses in 1 moves
Game #: 789
player wins in 3 moves
Game #: 790
player busts and loses in 3 moves
Game #: 791
player wins in 0 moves
Game #: 792
player busts and loses in 1 moves
Game #: 793
player loses in 1 moves
Game #: 794
player busts and loses in 1 moves
Game #: 795
player busts and loses in 2 moves
Game #: 796
player loses in 1 moves
Game #: 797
player loses in 1 moves
Game #: 798
player busts and loses in 1 moves
Game #: 799
player busts and loses in 2 moves
Game #: 800
player loses in 1 moves
Game #: 801
dealer busts and player wins in 2 moves
Game #: 802
player loses in 1 moves
Game #: 803
player loses in 1 moves
Game #: 804
player loses in 1 moves
Game #: 805
player busts and loses in 1 moves
Game #: 806
dealer busts and player wins in 1 moves
Game #: 807
player busts and loses in 2 moves
Game #: 808
player busts and loses in 1 moves
Game #: 809
dealer busts and player wins in 2 moves
Game #: 810
dealer busts and player wins in 1 moves
Game #: 811
player wins in 1 moves
Game #: 812
player loses in 2 moves
Game #: 813
player loses in 1 moves
Game #: 814
player wins in 1 moves
Game #: 815
dealer busts and player wins in 2 moves
Game #: 816
player loses in 1 moves
Game #: 817
player loses in 1 moves
Game #: 818
dealer busts and player wins in 1 moves
Game #: 819
dealer busts and player wins in 1 moves
Game #: 820
player wins in 0 moves
Game #: 821
player busts and loses in 2 moves
Game #: 822
player busts and loses in 1 moves
Game #: 823
dealer busts and player wins in 1 moves
Game #: 824
dealer busts and player wins in 1 moves
Game #: 825
player loses in 1 moves
Game #: 826
dealer busts and player wins in 1 moves
Game #: 827
player loses in 1 moves
Game #: 828
player loses in 3 moves
Game #: 829
dealer busts and player wins in 1 moves
Game #: 830
player busts and loses in 1 moves
Game #: 831
player loses in 1 moves
Game #: 832
player busts and loses in 2 moves
Game #: 833
player loses in 1 moves
Game #: 834
player loses in 2 moves
Game #: 835
player loses in 1 moves
Game #: 836
player loses in 1 moves
Game #: 837
player wins in 1 moves
Game #: 838
player busts and loses in 1 moves
Game #: 839
player loses in 1 moves
Game #: 840
player busts and loses in 2 moves
Game #: 841
player busts and loses in 2 moves
Game #: 842
dealer busts and player wins in 1 moves
Game #: 843
dealer busts and player wins in 1 moves
Game #: 844
player loses in 1 moves
Game #: 845
player loses in 1 moves
Game #: 846
player wins in 1 moves
Game #: 847
player loses in 1 moves
Game #: 848
player busts and loses in 1 moves
Game #: 849
player busts and loses in 2 moves
Game #: 850
player loses in 1 moves
Game #: 851
player busts and loses in 2 moves
Game #: 852
player loses in 1 moves
Game #: 853
draw in 1 moves
Game #: 854
player loses in 2 moves
Game #: 855
player loses in 1 moves
Game #: 856
dealer busts and player wins in 1 moves
Game #: 857
player loses in 1 moves
Game #: 858
player loses in 1 moves
Game #: 859
player wins in 2 moves
Game #: 860
player wins in 1 moves
Game #: 861
dealer busts and player wins in 2 moves
Game #: 862
player wins in 1 moves
Game #: 863
player busts and loses in 1 moves
Game #: 864
player loses in 1 moves
Game #: 865
player busts and loses in 1 moves
Game #: 866
player busts and loses in 1 moves
Game #: 867
player loses in 1 moves
Game #: 868
player wins in 0 moves
Game #: 869
player loses in 1 moves
Game #: 870
player wins in 1 moves
Game #: 871
player wins in 1 moves
Game #: 872
player loses in 1 moves
Game #: 873
player loses in 1 moves
Game #: 874
player loses in 2 moves
Game #: 875
player busts and loses in 1 moves
Game #: 876
player busts and loses in 1 moves
Game #: 877
player wins in 1 moves
Game #: 878
player busts and loses in 1 moves
Game #: 879
player busts and loses in 1 moves
Game #: 880
player wins in 0 moves
Game #: 881
player busts and loses in 2 moves
Game #: 882
player loses in 1 moves
Game #: 883
player loses in 1 moves
Game #: 884
player wins in 1 moves
Game #: 885
player busts and loses in 2 moves
Game #: 886
dealer busts and player wins in 2 moves
Game #: 887
dealer busts and player wins in 1 moves
Game #: 888
player wins in 2 moves
Game #: 889
player loses in 1 moves
Game #: 890
player loses in 1 moves
Game #: 891
player wins in 1 moves
Game #: 892
player loses in 1 moves
Game #: 893
player loses in 1 moves
Game #: 894
dealer busts and player wins in 1 moves
Game #: 895
player loses in 1 moves
Game #: 896
draw in 2 moves
Game #: 897
player busts and loses in 1 moves
Game #: 898
draw in 1 moves
Game #: 899
player loses in 1 moves
Game #: 900
player wins in 0 moves
Game #: 901
player busts and loses in 1 moves
Game #: 902
dealer busts and player wins in 2 moves
Game #: 903
player loses in 1 moves
Game #: 904
player wins in 2 moves
Game #: 905
dealer busts and player wins in 1 moves
Game #: 906
player loses in 1 moves
Game #: 907
player busts and loses in 1 moves
Game #: 908
player busts and loses in 1 moves
Game #: 909
player wins in 1 moves
Game #: 910
player busts and loses in 1 moves
Game #: 911
player loses in 1 moves
Game #: 912
player loses in 1 moves
Game #: 913
player loses in 1 moves
Game #: 914
dealer busts and player wins in 1 moves
Game #: 915
player busts and loses in 1 moves
Game #: 916
player wins in 0 moves
Game #: 917
player loses in 1 moves
Game #: 918
player busts and loses in 1 moves
Game #: 919
player wins in 2 moves
Game #: 920
player wins in 1 moves
Game #: 921
player wins in 1 moves
Game #: 922
player loses in 1 moves
Game #: 923
dealer busts and player wins in 1 moves
Game #: 924
player loses in 1 moves
Game #: 925
player loses in 1 moves
Game #: 926
player busts and loses in 2 moves
Game #: 927
player loses in 1 moves
Game #: 928
player loses in 2 moves
Game #: 929
player wins in 1 moves
Game #: 930
player busts and loses in 1 moves
Game #: 931
dealer busts and player wins in 1 moves
Game #: 932
player wins in 2 moves
Game #: 933
player loses in 2 moves
Game #: 934
player wins in 2 moves
Game #: 935
player busts and loses in 1 moves
Game #: 936
draw in 1 moves
Game #: 937
player busts and loses in 1 moves
Game #: 938
player busts and loses in 1 moves
Game #: 939
player loses in 1 moves
Game #: 940
player busts and loses in 1 moves
Game #: 941
player busts and loses in 1 moves
Game #: 942
player loses in 1 moves
Game #: 943
player loses in 1 moves
Game #: 944
player busts and loses in 1 moves
Game #: 945
player loses in 1 moves
Game #: 946
player loses in 1 moves
Game #: 947
player busts and loses in 1 moves
Game #: 948
player loses in 1 moves
Game #: 949
player busts and loses in 1 moves
Game #: 950
player busts and loses in 1 moves
Game #: 951
player busts and loses in 1 moves
Game #: 952
player loses in 2 moves
Game #: 953
player loses in 1 moves
Game #: 954
player busts and loses in 1 moves
Game #: 955
player busts and loses in 1 moves
Game #: 956
player busts and loses in 1 moves
Game #: 957
dealer busts and player wins in 3 moves
Game #: 958
dealer busts and player wins in 1 moves
Game #: 959
player loses in 1 moves
Game #: 960
dealer busts and player wins in 1 moves
Game #: 961
player wins in 1 moves
Game #: 962
player busts and loses in 3 moves
Game #: 963
player loses in 1 moves
Game #: 964
player wins in 2 moves
Game #: 965
player loses in 1 moves
Game #: 966
player loses in 1 moves
Game #: 967
player wins in 0 moves
Game #: 968
player busts and loses in 1 moves
Game #: 969
player busts and loses in 3 moves
Game #: 970
player loses in 1 moves
Game #: 971
player loses in 1 moves
Game #: 972
player wins in 1 moves
Game #: 973
player loses in 1 moves
Game #: 974
player wins in 1 moves
Game #: 975
player busts and loses in 1 moves
Game #: 976
player busts and loses in 1 moves
Game #: 977
player wins in 0 moves
Game #: 978
player busts and loses in 1 moves
Game #: 979
player busts and loses in 2 moves
Game #: 980
draw in 1 moves
Game #: 981
player loses in 1 moves
Game #: 982
dealer busts and player wins in 1 moves
Game #: 983
player busts and loses in 1 moves
Game #: 984
player loses in 1 moves
Game #: 985
player busts and loses in 2 moves
Game #: 986
player busts and loses in 1 moves
Game #: 987
player loses in 1 moves
Game #: 988
player busts and loses in 1 moves
Game #: 989
player loses in 1 moves
Game #: 990
player busts and loses in 1 moves
Game #: 991
player loses in 1 moves
Game #: 992
player loses in 2 moves
Game #: 993
player loses in 1 moves
Game #: 994
draw in 1 moves
Game #: 995
player wins in 0 moves
Game #: 996
dealer busts and player wins in 1 moves
Game #: 997
dealer busts and player wins in 1 moves
Game #: 998
player wins in 3 moves
Game #: 999
dealer busts and player wins in 2 moves
Game #: 1000
player busts and loses in 2 moves
Game #: 1001
player busts and loses in 1 moves
Game #: 1002
player loses in 1 moves
Game #: 1003
player busts and loses in 1 moves
Game #: 1004
player wins in 0 moves
Game #: 1005
player loses in 1 moves
Game #: 1006
player loses in 1 moves
Game #: 1007
dealer busts and player wins in 1 moves
Game #: 1008
player loses in 1 moves
Game #: 1009
player busts and loses in 1 moves
Game #: 1010
dealer busts and player wins in 2 moves
Game #: 1011
player loses in 1 moves
Game #: 1012
player busts and loses in 1 moves
Game #: 1013
player busts and loses in 1 moves
Game #: 1014
player wins in 0 moves
Game #: 1015
player loses in 3 moves
Game #: 1016
player loses in 1 moves
Game #: 1017
player loses in 1 moves
Game #: 1018
player loses in 1 moves
Game #: 1019
player busts and loses in 1 moves
Game #: 1020
player wins in 0 moves
Game #: 1021
player busts and loses in 1 moves
Game #: 1022
player wins in 1 moves
Game #: 1023
dealer busts and player wins in 1 moves
Game #: 1024
player busts and loses in 2 moves
Game #: 1025
draw in 1 moves
Game #: 1026
dealer busts and player wins in 1 moves
Game #: 1027
player loses in 1 moves
Game #: 1028
draw in 2 moves
Game #: 1029
player wins in 0 moves
Game #: 1030
dealer busts and player wins in 2 moves
Game #: 1031
player loses in 1 moves
Game #: 1032
player wins in 1 moves
Game #: 1033
player wins in 0 moves
Game #: 1034
player loses in 2 moves
Game #: 1035
dealer busts and player wins in 2 moves
Game #: 1036
player busts and loses in 1 moves
Game #: 1037
player loses in 2 moves
Game #: 1038
player loses in 1 moves
Game #: 1039
dealer busts and player wins in 1 moves
Game #: 1040
player wins in 1 moves
Game #: 1041
player busts and loses in 1 moves
Game #: 1042
dealer busts and player wins in 1 moves
Game #: 1043
dealer busts and player wins in 1 moves
Game #: 1044
player busts and loses in 1 moves
Game #: 1045
player loses in 1 moves
Game #: 1046
player loses in 1 moves
Game #: 1047
player busts and loses in 1 moves
Game #: 1048
player loses in 3 moves
Game #: 1049
player busts and loses in 1 moves
Game #: 1050
player loses in 2 moves
Game #: 1051
player loses in 1 moves
Game #: 1052
dealer busts and player wins in 1 moves
Game #: 1053
player wins in 0 moves
Game #: 1054
dealer busts and player wins in 1 moves
Game #: 1055
player busts and loses in 1 moves
Game #: 1056
player busts and loses in 1 moves
Game #: 1057
player busts and loses in 1 moves
Game #: 1058
draw in 2 moves
Game #: 1059
player busts and loses in 2 moves
Game #: 1060
player busts and loses in 1 moves
Game #: 1061
player busts and loses in 1 moves
Game #: 1062
dealer busts and player wins in 1 moves
Game #: 1063
player busts and loses in 1 moves
Game #: 1064
player busts and loses in 1 moves
Game #: 1065
draw in 1 moves
Game #: 1066
player busts and loses in 1 moves
Game #: 1067
player loses in 1 moves
Game #: 1068
player wins in 1 moves
Game #: 1069
player wins in 0 moves
Game #: 1070
player busts and loses in 1 moves
Game #: 1071
player busts and loses in 1 moves
Game #: 1072
dealer busts and player wins in 1 moves
Game #: 1073
dealer busts and player wins in 1 moves
Game #: 1074
player busts and loses in 2 moves
Game #: 1075
player loses in 1 moves
Game #: 1076
player loses in 1 moves
Game #: 1077
player busts and loses in 1 moves
Game #: 1078
dealer busts and player wins in 1 moves
Game #: 1079
player busts and loses in 1 moves
Game #: 1080
player busts and loses in 1 moves
Game #: 1081
player wins in 2 moves
Game #: 1082
player busts and loses in 2 moves
Game #: 1083
player wins in 0 moves
Game #: 1084
player busts and loses in 1 moves
Game #: 1085
player busts and loses in 1 moves
Game #: 1086
dealer busts and player wins in 1 moves
Game #: 1087
dealer busts and player wins in 1 moves
Game #: 1088
player loses in 1 moves
Game #: 1089
dealer busts and player wins in 1 moves
Game #: 1090
player wins in 3 moves
Game #: 1091
player busts and loses in 1 moves
Game #: 1092
player busts and loses in 1 moves
Game #: 1093
player busts and loses in 1 moves
Game #: 1094
player busts and loses in 1 moves
Game #: 1095
player loses in 1 moves
Game #: 1096
draw in 1 moves
Game #: 1097
player wins in 1 moves
Game #: 1098
dealer busts and player wins in 1 moves
Game #: 1099
draw in 1 moves
Game #: 1100
player wins in 0 moves
Game #: 1101
dealer busts and player wins in 2 moves
Game #: 1102
player busts and loses in 2 moves
Game #: 1103
player busts and loses in 2 moves
Game #: 1104
dealer busts and player wins in 1 moves
Game #: 1105
player busts and loses in 1 moves
Game #: 1106
player wins in 1 moves
Game #: 1107
player loses in 1 moves
Game #: 1108
dealer busts and player wins in 2 moves
Game #: 1109
player busts and loses in 1 moves
Game #: 1110
player wins in 1 moves
Game #: 1111
player wins in 2 moves
Game #: 1112
player busts and loses in 1 moves
Game #: 1113
player busts and loses in 1 moves
Game #: 1114
dealer busts and player wins in 1 moves
Game #: 1115
player loses in 2 moves
Game #: 1116
player wins in 1 moves
Game #: 1117
player loses in 2 moves
Game #: 1118
player loses in 1 moves
Game #: 1119
player loses in 1 moves
Game #: 1120
player busts and loses in 2 moves
Game #: 1121
draw in 1 moves
Game #: 1122
player wins in 1 moves
Game #: 1123
dealer busts and player wins in 1 moves
Game #: 1124
player busts and loses in 3 moves
Game #: 1125
player loses in 1 moves
Game #: 1126
player loses in 1 moves
Game #: 1127
player loses in 1 moves
Game #: 1128
player loses in 3 moves
Game #: 1129
dealer busts and player wins in 1 moves
Game #: 1130
player wins in 1 moves
Game #: 1131
player busts and loses in 1 moves
Game #: 1132
player wins in 0 moves
Game #: 1133
player busts and loses in 1 moves
Game #: 1134
player busts and loses in 1 moves
Game #: 1135
dealer busts and player wins in 1 moves
Game #: 1136
player busts and loses in 2 moves
Game #: 1137
player wins in 0 moves
Game #: 1138
player busts and loses in 2 moves
Game #: 1139
player wins in 1 moves
Game #: 1140
dealer busts and player wins in 1 moves
Game #: 1141
player wins in 2 moves
Game #: 1142
player busts and loses in 1 moves
Game #: 1143
player loses in 1 moves
Game #: 1144
player busts and loses in 2 moves
Game #: 1145
dealer busts and player wins in 1 moves
Game #: 1146
player wins in 1 moves
Game #: 1147
player loses in 1 moves
Game #: 1148
player wins in 0 moves
Game #: 1149
dealer busts and player wins in 1 moves
Game #: 1150
player wins in 0 moves
Game #: 1151
player loses in 1 moves
Game #: 1152
player loses in 1 moves
Game #: 1153
player loses in 1 moves
Game #: 1154
player busts and loses in 1 moves
Game #: 1155
player loses in 1 moves
Game #: 1156
player busts and loses in 1 moves
Game #: 1157
dealer busts and player wins in 2 moves
Game #: 1158
player busts and loses in 2 moves
Game #: 1159
player loses in 1 moves
Game #: 1160
dealer busts and player wins in 1 moves
Game #: 1161
player wins in 1 moves
Game #: 1162
dealer busts and player wins in 1 moves
Game #: 1163
player wins in 1 moves
Game #: 1164
player loses in 1 moves
Game #: 1165
player loses in 1 moves
Game #: 1166
player loses in 1 moves
Game #: 1167
player wins in 2 moves
Game #: 1168
draw in 2 moves
Game #: 1169
player loses in 1 moves
Game #: 1170
dealer busts and player wins in 2 moves
Game #: 1171
player loses in 1 moves
Game #: 1172
player wins in 0 moves
Game #: 1173
player wins in 1 moves
Game #: 1174
player loses in 1 moves
Game #: 1175
player loses in 1 moves
Game #: 1176
player loses in 1 moves
Game #: 1177
player busts and loses in 1 moves
Game #: 1178
player loses in 3 moves
Game #: 1179
player busts and loses in 1 moves
Game #: 1180
player loses in 1 moves
Game #: 1181
player loses in 1 moves
Game #: 1182
player busts and loses in 1 moves
Game #: 1183
player wins in 2 moves
Game #: 1184
dealer busts and player wins in 1 moves
Game #: 1185
dealer busts and player wins in 1 moves
Game #: 1186
player busts and loses in 1 moves
Game #: 1187
player loses in 2 moves
Game #: 1188
player busts and loses in 1 moves
Game #: 1189
player loses in 1 moves
Game #: 1190
player busts and loses in 2 moves
Game #: 1191
dealer busts and player wins in 1 moves
Game #: 1192
player busts and loses in 2 moves
Game #: 1193
player busts and loses in 1 moves
Game #: 1194
dealer busts and player wins in 1 moves
Game #: 1195
player wins in 0 moves
Game #: 1196
player loses in 1 moves
Game #: 1197
dealer busts and player wins in 1 moves
Game #: 1198
player loses in 1 moves
Game #: 1199
player loses in 1 moves
Game #: 1200
player loses in 1 moves
Game #: 1201
player loses in 1 moves
Game #: 1202
dealer busts and player wins in 1 moves
Game #: 1203
player loses in 1 moves
Game #: 1204
player busts and loses in 1 moves
Game #: 1205
player busts and loses in 1 moves
Game #: 1206
player loses in 1 moves
Game #: 1207
player loses in 1 moves
Game #: 1208
player wins in 0 moves
Game #: 1209
dealer busts and player wins in 2 moves
Game #: 1210
dealer busts and player wins in 1 moves
Game #: 1211
player busts and loses in 1 moves
Game #: 1212
player loses in 1 moves
Game #: 1213
player loses in 2 moves
Game #: 1214
player busts and loses in 1 moves
Game #: 1215
player loses in 1 moves
Game #: 1216
player loses in 1 moves
Game #: 1217
player loses in 1 moves
Game #: 1218
player loses in 1 moves
Game #: 1219
player loses in 1 moves
Game #: 1220
player loses in 1 moves
Game #: 1221
player loses in 1 moves
Game #: 1222
player busts and loses in 1 moves
Game #: 1223
player loses in 1 moves
Game #: 1224
player wins in 1 moves
Game #: 1225
dealer busts and player wins in 1 moves
Game #: 1226
player loses in 1 moves
Game #: 1227
player loses in 1 moves
Game #: 1228
player wins in 1 moves
Game #: 1229
dealer busts and player wins in 1 moves
Game #: 1230
player busts and loses in 1 moves
Game #: 1231
player wins in 0 moves
Game #: 1232
player wins in 1 moves
Game #: 1233
dealer busts and player wins in 1 moves
Game #: 1234
player busts and loses in 1 moves
Game #: 1235
draw in 2 moves
Game #: 1236
player busts and loses in 1 moves
Game #: 1237
player wins in 0 moves
Game #: 1238
player loses in 2 moves
Game #: 1239
draw in 1 moves
Game #: 1240
player loses in 1 moves
Game #: 1241
player loses in 1 moves
Game #: 1242
player wins in 0 moves
Game #: 1243
player loses in 1 moves
Game #: 1244
player loses in 1 moves
Game #: 1245
player busts and loses in 1 moves
Game #: 1246
dealer busts and player wins in 2 moves
Game #: 1247
player busts and loses in 1 moves
Game #: 1248
player busts and loses in 1 moves
Game #: 1249
player wins in 1 moves
Game #: 1250
player busts and loses in 1 moves
Game #: 1251
player loses in 1 moves
Game #: 1252
player loses in 1 moves
Game #: 1253
player loses in 1 moves
Game #: 1254
player busts and loses in 1 moves
Game #: 1255
dealer busts and player wins in 1 moves
Game #: 1256
player wins in 0 moves
Game #: 1257
player loses in 1 moves
Game #: 1258
dealer busts and player wins in 1 moves
Game #: 1259
player busts and loses in 1 moves
Game #: 1260
player loses in 1 moves
Game #: 1261
player wins in 2 moves
Game #: 1262
player busts and loses in 1 moves
Game #: 1263
player loses in 1 moves
Game #: 1264
player busts and loses in 1 moves
Game #: 1265
player wins in 0 moves
Game #: 1266
player loses in 1 moves
Game #: 1267
dealer busts and player wins in 1 moves
Game #: 1268
player busts and loses in 1 moves
Game #: 1269
player loses in 1 moves
Game #: 1270
player wins in 0 moves
Game #: 1271
dealer busts and player wins in 1 moves
Game #: 1272
player wins in 2 moves
Game #: 1273
player loses in 3 moves
Game #: 1274
player loses in 1 moves
Game #: 1275
player busts and loses in 2 moves
Game #: 1276
player wins in 0 moves
Game #: 1277
draw in 1 moves
Game #: 1278
player busts and loses in 1 moves
Game #: 1279
player wins in 0 moves
Game #: 1280
player busts and loses in 1 moves
Game #: 1281
player busts and loses in 1 moves
Game #: 1282
player busts and loses in 1 moves
Game #: 1283
player busts and loses in 1 moves
Game #: 1284
player loses in 1 moves
Game #: 1285
player loses in 1 moves
Game #: 1286
player loses in 3 moves
Game #: 1287
draw in 1 moves
Game #: 1288
dealer busts and player wins in 1 moves
Game #: 1289
player busts and loses in 1 moves
Game #: 1290
player wins in 0 moves
Game #: 1291
player loses in 1 moves
Game #: 1292
player loses in 1 moves
Game #: 1293
player wins in 1 moves
Game #: 1294
player loses in 1 moves
Game #: 1295
player busts and loses in 1 moves
Game #: 1296
dealer busts and player wins in 1 moves
Game #: 1297
player busts and loses in 1 moves
Game #: 1298
draw in 1 moves
Game #: 1299
player busts and loses in 1 moves
Game #: 1300
dealer busts and player wins in 1 moves
Game #: 1301
player busts and loses in 2 moves
Game #: 1302
dealer busts and player wins in 1 moves
Game #: 1303
player loses in 1 moves
Game #: 1304
player wins in 0 moves
Game #: 1305
dealer busts and player wins in 1 moves
Game #: 1306
dealer busts and player wins in 2 moves
Game #: 1307
player busts and loses in 1 moves
Game #: 1308
player loses in 1 moves
Game #: 1309
player busts and loses in 1 moves
Game #: 1310
player wins in 1 moves
Game #: 1311
dealer busts and player wins in 1 moves
Game #: 1312
player busts and loses in 1 moves
Game #: 1313
player loses in 1 moves
Game #: 1314
player wins in 2 moves
Game #: 1315
player loses in 1 moves
Game #: 1316
dealer busts and player wins in 1 moves
Game #: 1317
player busts and loses in 2 moves
Game #: 1318
player busts and loses in 2 moves
Game #: 1319
player busts and loses in 1 moves
Game #: 1320
player loses in 1 moves
Game #: 1321
player wins in 1 moves
Game #: 1322
player loses in 2 moves
Game #: 1323
player busts and loses in 1 moves
Game #: 1324
player wins in 1 moves
Game #: 1325
player busts and loses in 1 moves
Game #: 1326
dealer busts and player wins in 1 moves
Game #: 1327
player wins in 0 moves
Game #: 1328
dealer busts and player wins in 2 moves
Game #: 1329
player busts and loses in 1 moves
Game #: 1330
player loses in 1 moves
Game #: 1331
player loses in 1 moves
Game #: 1332
player wins in 0 moves
Game #: 1333
player wins in 0 moves
Game #: 1334
player busts and loses in 3 moves
Game #: 1335
player busts and loses in 2 moves
Game #: 1336
player loses in 1 moves
Game #: 1337
player wins in 0 moves
Game #: 1338
player loses in 1 moves
Game #: 1339
player busts and loses in 1 moves
Game #: 1340
player busts and loses in 1 moves
Game #: 1341
player busts and loses in 1 moves
Game #: 1342
player loses in 3 moves
Game #: 1343
player loses in 1 moves
Game #: 1344
player loses in 1 moves
Game #: 1345
dealer busts and player wins in 2 moves
Game #: 1346
draw in 2 moves
Game #: 1347
player busts and loses in 1 moves
Game #: 1348
player loses in 1 moves
Game #: 1349
player loses in 1 moves
Game #: 1350
dealer busts and player wins in 1 moves
Game #: 1351
player loses in 1 moves
Game #: 1352
player busts and loses in 1 moves
Game #: 1353
player wins in 0 moves
Game #: 1354
dealer busts and player wins in 1 moves
Game #: 1355
player loses in 1 moves
Game #: 1356
player wins in 1 moves
Game #: 1357
player loses in 2 moves
Game #: 1358
player busts and loses in 1 moves
Game #: 1359
dealer busts and player wins in 2 moves
Game #: 1360
player busts and loses in 1 moves
Game #: 1361
dealer busts and player wins in 3 moves
Game #: 1362
player wins in 1 moves
Game #: 1363
player loses in 1 moves
Game #: 1364
player loses in 2 moves
Game #: 1365
player busts and loses in 3 moves
Game #: 1366
player wins in 0 moves
Game #: 1367
player busts and loses in 1 moves
Game #: 1368
player busts and loses in 1 moves
Game #: 1369
player busts and loses in 1 moves
Game #: 1370
player busts and loses in 2 moves
Game #: 1371
dealer busts and player wins in 1 moves
Game #: 1372
player busts and loses in 2 moves
Game #: 1373
player loses in 1 moves
Game #: 1374
dealer busts and player wins in 1 moves
Game #: 1375
dealer busts and player wins in 2 moves
Game #: 1376
player loses in 1 moves
Game #: 1377
dealer busts and player wins in 1 moves
Game #: 1378
player loses in 2 moves
Game #: 1379
player loses in 1 moves
Game #: 1380
player loses in 1 moves
Game #: 1381
player loses in 2 moves
Game #: 1382
player loses in 1 moves
Game #: 1383
player loses in 1 moves
Game #: 1384
dealer busts and player wins in 1 moves
Game #: 1385
player busts and loses in 1 moves
Game #: 1386
dealer busts and player wins in 1 moves
Game #: 1387
dealer busts and player wins in 1 moves
Game #: 1388
player loses in 1 moves
Game #: 1389
player loses in 1 moves
Game #: 1390
dealer busts and player wins in 1 moves
Game #: 1391
dealer busts and player wins in 1 moves
Game #: 1392
player loses in 2 moves
Game #: 1393
dealer busts and player wins in 1 moves
Game #: 1394
dealer busts and player wins in 1 moves
Game #: 1395
draw in 1 moves
Game #: 1396
player loses in 1 moves
Game #: 1397
player busts and loses in 1 moves
Game #: 1398
player wins in 3 moves
Game #: 1399
dealer busts and player wins in 1 moves
Game #: 1400
player loses in 1 moves
Game #: 1401
dealer busts and player wins in 1 moves
Game #: 1402
player busts and loses in 1 moves
Game #: 1403
player loses in 1 moves
Game #: 1404
player wins in 0 moves
Game #: 1405
player busts and loses in 1 moves
Game #: 1406
player loses in 1 moves
Game #: 1407
player loses in 1 moves
Game #: 1408
player loses in 1 moves
Game #: 1409
player loses in 1 moves
Game #: 1410
player busts and loses in 1 moves
Game #: 1411
player wins in 0 moves
Game #: 1412
player busts and loses in 1 moves
Game #: 1413
player busts and loses in 1 moves
Game #: 1414
player loses in 1 moves
Game #: 1415
dealer busts and player wins in 1 moves
Game #: 1416
player loses in 1 moves
Game #: 1417
player loses in 2 moves
Game #: 1418
player busts and loses in 1 moves
Game #: 1419
player loses in 1 moves
Game #: 1420
player busts and loses in 1 moves
Game #: 1421
player busts and loses in 1 moves
Game #: 1422
player loses in 1 moves
Game #: 1423
player busts and loses in 1 moves
Game #: 1424
dealer busts and player wins in 1 moves
Game #: 1425
dealer busts and player wins in 2 moves
Game #: 1426
player busts and loses in 3 moves
Game #: 1427
dealer busts and player wins in 1 moves
Game #: 1428
dealer busts and player wins in 1 moves
Game #: 1429
dealer busts and player wins in 1 moves
Game #: 1430
player busts and loses in 1 moves
Game #: 1431
player busts and loses in 2 moves
Game #: 1432
player loses in 1 moves
Game #: 1433
dealer busts and player wins in 1 moves
Game #: 1434
draw in 2 moves
Game #: 1435
player loses in 1 moves
Game #: 1436
player busts and loses in 2 moves
Game #: 1437
player loses in 1 moves
Game #: 1438
player busts and loses in 5 moves
Game #: 1439
dealer busts and player wins in 1 moves
Game #: 1440
player loses in 1 moves
Game #: 1441
player busts and loses in 1 moves
Game #: 1442
player busts and loses in 1 moves
Game #: 1443
dealer busts and player wins in 2 moves
Game #: 1444
player wins in 0 moves
Game #: 1445
player loses in 1 moves
Game #: 1446
player busts and loses in 1 moves
Game #: 1447
player loses in 1 moves
Game #: 1448
dealer busts and player wins in 1 moves
Game #: 1449
player wins in 1 moves
Game #: 1450
player busts and loses in 1 moves
Game #: 1451
draw in 1 moves
Game #: 1452
player wins in 0 moves
Game #: 1453
player wins in 0 moves
Game #: 1454
player loses in 2 moves
Game #: 1455
player busts and loses in 1 moves
Game #: 1456
player loses in 1 moves
Game #: 1457
player loses in 1 moves
Game #: 1458
player busts and loses in 1 moves
Game #: 1459
player busts and loses in 1 moves
Game #: 1460
dealer busts and player wins in 1 moves
Game #: 1461
player loses in 2 moves
Game #: 1462
player busts and loses in 1 moves
Game #: 1463
player loses in 1 moves
Game #: 1464
player loses in 1 moves
Game #: 1465
player wins in 1 moves
Game #: 1466
dealer busts and player wins in 3 moves
Game #: 1467
player wins in 2 moves
Game #: 1468
dealer busts and player wins in 1 moves
Game #: 1469
player loses in 1 moves
Game #: 1470
player busts and loses in 1 moves
Game #: 1471
player loses in 1 moves
Game #: 1472
player busts and loses in 2 moves
Game #: 1473
player loses in 2 moves
Game #: 1474
dealer busts and player wins in 1 moves
Game #: 1475
player loses in 1 moves
Game #: 1476
dealer busts and player wins in 2 moves
Game #: 1477
dealer busts and player wins in 1 moves
Game #: 1478
player busts and loses in 1 moves
Game #: 1479
player loses in 1 moves
Game #: 1480
player busts and loses in 1 moves
Game #: 1481
player busts and loses in 1 moves
Game #: 1482
dealer busts and player wins in 1 moves
Game #: 1483
player wins in 3 moves
Game #: 1484
dealer busts and player wins in 2 moves
Game #: 1485
player busts and loses in 1 moves
Game #: 1486
player loses in 1 moves
Game #: 1487
player loses in 1 moves
Game #: 1488
player busts and loses in 1 moves
Game #: 1489
player loses in 1 moves
Game #: 1490
player busts and loses in 1 moves
Game #: 1491
player busts and loses in 1 moves
Game #: 1492
player loses in 1 moves
Game #: 1493
player wins in 0 moves
Game #: 1494
player loses in 1 moves
Game #: 1495
dealer busts and player wins in 1 moves
Game #: 1496
player loses in 2 moves
Game #: 1497
player loses in 1 moves
Game #: 1498
player busts and loses in 1 moves
Game #: 1499
player loses in 2 moves
Game #: 1500
player loses in 1 moves
Game #: 1501
dealer busts and player wins in 1 moves
Game #: 1502
player busts and loses in 2 moves
Game #: 1503
player loses in 2 moves
Game #: 1504
dealer busts and player wins in 1 moves
Game #: 1505
player busts and loses in 1 moves
Game #: 1506
dealer busts and player wins in 1 moves
Game #: 1507
dealer busts and player wins in 1 moves
Game #: 1508
player loses in 1 moves
Game #: 1509
dealer busts and player wins in 1 moves
Game #: 1510
player loses in 1 moves
Game #: 1511
player loses in 1 moves
Game #: 1512
player loses in 1 moves
Game #: 1513
player loses in 1 moves
Game #: 1514
player loses in 1 moves
Game #: 1515
player busts and loses in 1 moves
Game #: 1516
player busts and loses in 1 moves
Game #: 1517
player loses in 1 moves
Game #: 1518
player wins in 3 moves
Game #: 1519
player busts and loses in 1 moves
Game #: 1520
player busts and loses in 2 moves
Game #: 1521
player loses in 1 moves
Game #: 1522
player loses in 2 moves
Game #: 1523
player busts and loses in 1 moves
Game #: 1524
player busts and loses in 1 moves
Game #: 1525
dealer busts and player wins in 1 moves
Game #: 1526
player busts and loses in 1 moves
Game #: 1527
dealer busts and player wins in 1 moves
Game #: 1528
player busts and loses in 1 moves
Game #: 1529
player loses in 1 moves
Game #: 1530
player busts and loses in 1 moves
Game #: 1531
player wins in 1 moves
Game #: 1532
player wins in 0 moves
Game #: 1533
player busts and loses in 1 moves
Game #: 1534
player busts and loses in 1 moves
Game #: 1535
dealer busts and player wins in 1 moves
Game #: 1536
dealer busts and player wins in 1 moves
Game #: 1537
player busts and loses in 1 moves
Game #: 1538
dealer busts and player wins in 1 moves
Game #: 1539
player busts and loses in 1 moves
Game #: 1540
player wins in 1 moves
Game #: 1541
player loses in 1 moves
Game #: 1542
player wins in 0 moves
Game #: 1543
dealer busts and player wins in 2 moves
Game #: 1544
dealer busts and player wins in 1 moves
Game #: 1545
player busts and loses in 1 moves
Game #: 1546
player loses in 1 moves
Game #: 1547
player loses in 1 moves
Game #: 1548
player busts and loses in 1 moves
Game #: 1549
player busts and loses in 1 moves
Game #: 1550
player loses in 1 moves
Game #: 1551
player loses in 1 moves
Game #: 1552
player wins in 1 moves
Game #: 1553
player loses in 2 moves
Game #: 1554
player loses in 2 moves
Game #: 1555
player loses in 1 moves
Game #: 1556
player busts and loses in 1 moves
Game #: 1557
player busts and loses in 2 moves
Game #: 1558
player busts and loses in 2 moves
Game #: 1559
draw in 1 moves
Game #: 1560
player busts and loses in 1 moves
Game #: 1561
draw in 1 moves
Game #: 1562
player loses in 2 moves
Game #: 1563
player loses in 1 moves
Game #: 1564
player busts and loses in 1 moves
Game #: 1565
player busts and loses in 2 moves
Game #: 1566
dealer busts and player wins in 1 moves
Game #: 1567
player loses in 1 moves
Game #: 1568
player loses in 1 moves
Game #: 1569
player loses in 1 moves
Game #: 1570
dealer busts and player wins in 1 moves
Game #: 1571
player loses in 1 moves
Game #: 1572
dealer busts and player wins in 2 moves
Game #: 1573
player busts and loses in 1 moves
Game #: 1574
player loses in 1 moves
Game #: 1575
player loses in 1 moves
Game #: 1576
dealer busts and player wins in 1 moves
Game #: 1577
dealer busts and player wins in 2 moves
Game #: 1578
player wins in 0 moves
Game #: 1579
player loses in 1 moves
Game #: 1580
player wins in 2 moves
Game #: 1581
dealer busts and player wins in 1 moves
Game #: 1582
dealer busts and player wins in 1 moves
Game #: 1583
player loses in 2 moves
Game #: 1584
player busts and loses in 1 moves
Game #: 1585
player loses in 2 moves
Game #: 1586
player loses in 1 moves
Game #: 1587
player loses in 1 moves
Game #: 1588
player busts and loses in 1 moves
Game #: 1589
player loses in 2 moves
Game #: 1590
player wins in 0 moves
Game #: 1591
player busts and loses in 1 moves
Game #: 1592
player busts and loses in 3 moves
Game #: 1593
player busts and loses in 2 moves
Game #: 1594
dealer busts and player wins in 2 moves
Game #: 1595
dealer busts and player wins in 1 moves
Game #: 1596
player loses in 1 moves
Game #: 1597
player busts and loses in 1 moves
Game #: 1598
player loses in 1 moves
Game #: 1599
player loses in 1 moves
Game #: 1600
player wins in 1 moves
Game #: 1601
player busts and loses in 2 moves
Game #: 1602
player busts and loses in 2 moves
Game #: 1603
player loses in 1 moves
Game #: 1604
player wins in 3 moves
Game #: 1605
draw in 1 moves
Game #: 1606
player busts and loses in 1 moves
Game #: 1607
player wins in 0 moves
Game #: 1608
player loses in 1 moves
Game #: 1609
player wins in 1 moves
Game #: 1610
player loses in 1 moves
Game #: 1611
player busts and loses in 1 moves
Game #: 1612
player wins in 1 moves
Game #: 1613
player busts and loses in 1 moves
Game #: 1614
dealer busts and player wins in 1 moves
Game #: 1615
player busts and loses in 3 moves
Game #: 1616
player loses in 2 moves
Game #: 1617
player loses in 1 moves
Game #: 1618
player loses in 1 moves
Game #: 1619
dealer busts and player wins in 1 moves
Game #: 1620
player busts and loses in 1 moves
Game #: 1621
player loses in 2 moves
Game #: 1622
player loses in 1 moves
Game #: 1623
dealer busts and player wins in 1 moves
Game #: 1624
player loses in 1 moves
Game #: 1625
dealer busts and player wins in 1 moves
Game #: 1626
player busts and loses in 1 moves
Game #: 1627
player busts and loses in 1 moves
Game #: 1628
player busts and loses in 1 moves
Game #: 1629
player loses in 1 moves
Game #: 1630
player wins in 0 moves
Game #: 1631
player busts and loses in 1 moves
Game #: 1632
player busts and loses in 1 moves
Game #: 1633
dealer busts and player wins in 1 moves
Game #: 1634
player wins in 0 moves
Game #: 1635
dealer busts and player wins in 1 moves
Game #: 1636
player busts and loses in 1 moves
Game #: 1637
dealer busts and player wins in 1 moves
Game #: 1638
player loses in 1 moves
Game #: 1639
player loses in 1 moves
Game #: 1640
player loses in 1 moves
Game #: 1641
player busts and loses in 1 moves
Game #: 1642
player wins in 1 moves
Game #: 1643
player wins in 0 moves
Game #: 1644
player busts and loses in 1 moves
Game #: 1645
dealer busts and player wins in 1 moves
Game #: 1646
player loses in 1 moves
Game #: 1647
player busts and loses in 2 moves
Game #: 1648
player wins in 0 moves
Game #: 1649
player busts and loses in 1 moves
Game #: 1650
player busts and loses in 1 moves
Game #: 1651
player busts and loses in 1 moves
Game #: 1652
player wins in 0 moves
Game #: 1653
dealer busts and player wins in 1 moves
Game #: 1654
player loses in 1 moves
Game #: 1655
dealer busts and player wins in 2 moves
Game #: 1656
player busts and loses in 1 moves
Game #: 1657
player loses in 1 moves
Game #: 1658
dealer busts and player wins in 1 moves
Game #: 1659
player busts and loses in 1 moves
Game #: 1660
player wins in 0 moves
Game #: 1661
player loses in 1 moves
Game #: 1662
player loses in 2 moves
Game #: 1663
player wins in 2 moves
Game #: 1664
player wins in 1 moves
Game #: 1665
player loses in 1 moves
Game #: 1666
player busts and loses in 1 moves
Game #: 1667
dealer busts and player wins in 1 moves
Game #: 1668
draw in 1 moves
Game #: 1669
dealer busts and player wins in 1 moves
Game #: 1670
player wins in 0 moves
Game #: 1671
player wins in 1 moves
Game #: 1672
player loses in 1 moves
Game #: 1673
dealer busts and player wins in 2 moves
Game #: 1674
player busts and loses in 1 moves
Game #: 1675
dealer busts and player wins in 1 moves
Game #: 1676
player loses in 1 moves
Game #: 1677
dealer busts and player wins in 1 moves
Game #: 1678
player busts and loses in 1 moves
Game #: 1679
player busts and loses in 1 moves
Game #: 1680
dealer busts and player wins in 1 moves
Game #: 1681
player busts and loses in 1 moves
Game #: 1682
player loses in 1 moves
Game #: 1683
player loses in 1 moves
Game #: 1684
player busts and loses in 1 moves
Game #: 1685
player busts and loses in 1 moves
Game #: 1686
draw in 2 moves
Game #: 1687
player busts and loses in 1 moves
Game #: 1688
dealer busts and player wins in 2 moves
Game #: 1689
player busts and loses in 1 moves
Game #: 1690
draw in 1 moves
Game #: 1691
player wins in 2 moves
Game #: 1692
player wins in 0 moves
Game #: 1693
player loses in 1 moves
Game #: 1694
dealer busts and player wins in 1 moves
Game #: 1695
player loses in 1 moves
Game #: 1696
player loses in 1 moves
Game #: 1697
player busts and loses in 1 moves
Game #: 1698
player loses in 1 moves
Game #: 1699
draw in 1 moves
Game #: 1700
player busts and loses in 1 moves
Game #: 1701
player busts and loses in 1 moves
Game #: 1702
player wins in 1 moves
Game #: 1703
player busts and loses in 1 moves
Game #: 1704
player loses in 1 moves
Game #: 1705
player busts and loses in 1 moves
Game #: 1706
dealer busts and player wins in 1 moves
Game #: 1707
draw in 2 moves
Game #: 1708
player wins in 1 moves
Game #: 1709
player loses in 1 moves
Game #: 1710
player busts and loses in 1 moves
Game #: 1711
player loses in 1 moves
Game #: 1712
player loses in 2 moves
Game #: 1713
dealer busts and player wins in 1 moves
Game #: 1714
player wins in 2 moves
Game #: 1715
player wins in 1 moves
Game #: 1716
player wins in 2 moves
Game #: 1717
player wins in 1 moves
Game #: 1718
player loses in 1 moves
Game #: 1719
player loses in 1 moves
Game #: 1720
player busts and loses in 1 moves
Game #: 1721
player loses in 1 moves
Game #: 1722
dealer busts and player wins in 1 moves
Game #: 1723
draw in 1 moves
Game #: 1724
player loses in 1 moves
Game #: 1725
player loses in 2 moves
Game #: 1726
player wins in 2 moves
Game #: 1727
player loses in 1 moves
Game #: 1728
dealer busts and player wins in 1 moves
Game #: 1729
player busts and loses in 2 moves
Game #: 1730
dealer busts and player wins in 1 moves
Game #: 1731
player loses in 1 moves
Game #: 1732
player loses in 1 moves
Game #: 1733
player loses in 1 moves
Game #: 1734
dealer busts and player wins in 1 moves
Game #: 1735
player loses in 1 moves
Game #: 1736
player loses in 1 moves
Game #: 1737
player wins in 0 moves
Game #: 1738
player busts and loses in 2 moves
Game #: 1739
dealer busts and player wins in 1 moves
Game #: 1740
player wins in 1 moves
Game #: 1741
dealer busts and player wins in 1 moves
Game #: 1742
player wins in 2 moves
Game #: 1743
draw in 1 moves
Game #: 1744
player loses in 1 moves
Game #: 1745
player wins in 1 moves
Game #: 1746
player loses in 1 moves
Game #: 1747
dealer busts and player wins in 1 moves
Game #: 1748
player wins in 0 moves
Game #: 1749
player busts and loses in 1 moves
Game #: 1750
player loses in 1 moves
Game #: 1751
player loses in 1 moves
Game #: 1752
dealer busts and player wins in 1 moves
Game #: 1753
player busts and loses in 1 moves
Game #: 1754
player busts and loses in 2 moves
Game #: 1755
player wins in 1 moves
Game #: 1756
dealer busts and player wins in 1 moves
Game #: 1757
player wins in 1 moves
Game #: 1758
player busts and loses in 1 moves
Game #: 1759
player loses in 1 moves
Game #: 1760
player loses in 2 moves
Game #: 1761
player wins in 1 moves
Game #: 1762
player wins in 2 moves
Game #: 1763
dealer busts and player wins in 1 moves
Game #: 1764
player busts and loses in 1 moves
Game #: 1765
player busts and loses in 1 moves
Game #: 1766
player busts and loses in 3 moves
Game #: 1767
draw in 1 moves
Game #: 1768
player loses in 1 moves
Game #: 1769
player loses in 1 moves
Game #: 1770
player busts and loses in 1 moves
Game #: 1771
player wins in 0 moves
Game #: 1772
player wins in 0 moves
Game #: 1773
player busts and loses in 1 moves
Game #: 1774
dealer busts and player wins in 3 moves
Game #: 1775
player wins in 0 moves
Game #: 1776
player busts and loses in 1 moves
Game #: 1777
player busts and loses in 1 moves
Game #: 1778
player wins in 0 moves
Game #: 1779
player loses in 2 moves
Game #: 1780
player busts and loses in 1 moves
Game #: 1781
player wins in 1 moves
Game #: 1782
player loses in 1 moves
Game #: 1783
player busts and loses in 1 moves
Game #: 1784
player wins in 0 moves
Game #: 1785
player wins in 1 moves
Game #: 1786
player wins in 1 moves
Game #: 1787
dealer busts and player wins in 1 moves
Game #: 1788
player wins in 0 moves
Game #: 1789
player busts and loses in 1 moves
Game #: 1790
dealer busts and player wins in 2 moves
Game #: 1791
player wins in 0 moves
Game #: 1792
player loses in 1 moves
Game #: 1793
player loses in 1 moves
Game #: 1794
player wins in 1 moves
Game #: 1795
player wins in 0 moves
Game #: 1796
player loses in 2 moves
Game #: 1797
player busts and loses in 1 moves
Game #: 1798
player busts and loses in 1 moves
Game #: 1799
player busts and loses in 1 moves
Game #: 1800
player busts and loses in 2 moves
Game #: 1801
player busts and loses in 1 moves
Game #: 1802
player busts and loses in 1 moves
Game #: 1803
player loses in 1 moves
Game #: 1804
player loses in 1 moves
Game #: 1805
player wins in 0 moves
Game #: 1806
player busts and loses in 1 moves
Game #: 1807
player loses in 1 moves
Game #: 1808
dealer busts and player wins in 1 moves
Game #: 1809
player busts and loses in 1 moves
Game #: 1810
dealer busts and player wins in 1 moves
Game #: 1811
dealer busts and player wins in 1 moves
Game #: 1812
player loses in 1 moves
Game #: 1813
player loses in 1 moves
Game #: 1814
draw in 2 moves
Game #: 1815
player loses in 2 moves
Game #: 1816
player loses in 1 moves
Game #: 1817
player busts and loses in 1 moves
Game #: 1818
player busts and loses in 1 moves
Game #: 1819
dealer busts and player wins in 1 moves
Game #: 1820
player wins in 1 moves
Game #: 1821
player busts and loses in 1 moves
Game #: 1822
dealer busts and player wins in 1 moves
Game #: 1823
player loses in 1 moves
Game #: 1824
player busts and loses in 1 moves
Game #: 1825
player loses in 1 moves
Game #: 1826
player busts and loses in 1 moves
Game #: 1827
player loses in 1 moves
Game #: 1828
player loses in 2 moves
Game #: 1829
player wins in 1 moves
Game #: 1830
player loses in 1 moves
Game #: 1831
player loses in 1 moves
Game #: 1832
player loses in 1 moves
Game #: 1833
player loses in 1 moves
Game #: 1834
player busts and loses in 1 moves
Game #: 1835
player busts and loses in 1 moves
Game #: 1836
player loses in 3 moves
Game #: 1837
player loses in 3 moves
Game #: 1838
player loses in 2 moves
Game #: 1839
player busts and loses in 1 moves
Game #: 1840
player loses in 1 moves
Game #: 1841
player loses in 1 moves
Game #: 1842
dealer busts and player wins in 1 moves
Game #: 1843
player loses in 1 moves
Game #: 1844
player busts and loses in 2 moves
Game #: 1845
player loses in 1 moves
Game #: 1846
dealer busts and player wins in 1 moves
Game #: 1847
dealer busts and player wins in 2 moves
Game #: 1848
player loses in 1 moves
Game #: 1849
player loses in 2 moves
Game #: 1850
player loses in 1 moves
Game #: 1851
draw in 2 moves
Game #: 1852
draw in 3 moves
Game #: 1853
player loses in 1 moves
Game #: 1854
player busts and loses in 1 moves
Game #: 1855
player loses in 2 moves
Game #: 1856
player wins in 1 moves
Game #: 1857
player loses in 1 moves
Game #: 1858
dealer busts and player wins in 1 moves
Game #: 1859
player loses in 1 moves
Game #: 1860
player wins in 1 moves
Game #: 1861
player busts and loses in 2 moves
Game #: 1862
player wins in 0 moves
Game #: 1863
player wins in 1 moves
Game #: 1864
player loses in 1 moves
Game #: 1865
player busts and loses in 2 moves
Game #: 1866
dealer busts and player wins in 3 moves
Game #: 1867
dealer busts and player wins in 3 moves
Game #: 1868
dealer busts and player wins in 1 moves
Game #: 1869
player busts and loses in 1 moves
Game #: 1870
player loses in 1 moves
Game #: 1871
player wins in 1 moves
Game #: 1872
player busts and loses in 2 moves
Game #: 1873
player loses in 1 moves
Game #: 1874
draw in 3 moves
Game #: 1875
player busts and loses in 3 moves
Game #: 1876
player busts and loses in 2 moves
Game #: 1877
player wins in 1 moves
Game #: 1878
player busts and loses in 1 moves
Game #: 1879
player loses in 1 moves
Game #: 1880
player loses in 1 moves
Game #: 1881
dealer busts and player wins in 2 moves
Game #: 1882
dealer busts and player wins in 1 moves
Game #: 1883
player loses in 1 moves
Game #: 1884
dealer busts and player wins in 1 moves
Game #: 1885
player busts and loses in 1 moves
Game #: 1886
dealer busts and player wins in 1 moves
Game #: 1887
player loses in 1 moves
Game #: 1888
player wins in 2 moves
Game #: 1889
player loses in 1 moves
Game #: 1890
player loses in 1 moves
Game #: 1891
player loses in 1 moves
Game #: 1892
player wins in 0 moves
Game #: 1893
dealer busts and player wins in 1 moves
Game #: 1894
player wins in 1 moves
Game #: 1895
player busts and loses in 1 moves
Game #: 1896
player loses in 1 moves
Game #: 1897
player wins in 0 moves
Game #: 1898
player wins in 1 moves
Game #: 1899
player loses in 1 moves
Game #: 1900
player busts and loses in 3 moves
Game #: 1901
player busts and loses in 2 moves
Game #: 1902
player wins in 0 moves
Game #: 1903
player busts and loses in 1 moves
Game #: 1904
player wins in 1 moves
Game #: 1905
dealer busts and player wins in 5 moves
Game #: 1906
player busts and loses in 1 moves
Game #: 1907
player wins in 1 moves
Game #: 1908
player wins in 1 moves
Game #: 1909
player loses in 1 moves
Game #: 1910
player busts and loses in 1 moves
Game #: 1911
dealer busts and player wins in 1 moves
Game #: 1912
player wins in 2 moves
Game #: 1913
dealer busts and player wins in 2 moves
Game #: 1914
dealer busts and player wins in 1 moves
Game #: 1915
player busts and loses in 1 moves
Game #: 1916
player loses in 4 moves
Game #: 1917
player loses in 1 moves
Game #: 1918
player wins in 1 moves
Game #: 1919
dealer busts and player wins in 1 moves
Game #: 1920
player wins in 1 moves
Game #: 1921
player busts and loses in 1 moves
Game #: 1922
dealer busts and player wins in 1 moves
Game #: 1923
dealer busts and player wins in 1 moves
Game #: 1924
player loses in 1 moves
Game #: 1925
player wins in 0 moves
Game #: 1926
player wins in 0 moves
Game #: 1927
player busts and loses in 1 moves
Game #: 1928
player busts and loses in 1 moves
Game #: 1929
player loses in 1 moves
Game #: 1930
player wins in 0 moves
Game #: 1931
player loses in 1 moves
Game #: 1932
dealer busts and player wins in 1 moves
Game #: 1933
player busts and loses in 1 moves
Game #: 1934
player busts and loses in 1 moves
Game #: 1935
player busts and loses in 2 moves
Game #: 1936
player busts and loses in 1 moves
Game #: 1937
draw in 1 moves
Game #: 1938
player loses in 1 moves
Game #: 1939
player busts and loses in 1 moves
Game #: 1940
player loses in 1 moves
Game #: 1941
player busts and loses in 1 moves
Game #: 1942
player wins in 1 moves
Game #: 1943
player loses in 1 moves
Game #: 1944
player busts and loses in 1 moves
Game #: 1945
player busts and loses in 1 moves
Game #: 1946
dealer busts and player wins in 1 moves
Game #: 1947
player busts and loses in 2 moves
Game #: 1948
player busts and loses in 1 moves
Game #: 1949
dealer busts and player wins in 1 moves
Game #: 1950
player loses in 1 moves
Game #: 1951
player busts and loses in 2 moves
Game #: 1952
player busts and loses in 2 moves
Game #: 1953
player loses in 1 moves
Game #: 1954
player busts and loses in 1 moves
Game #: 1955
player busts and loses in 1 moves
Game #: 1956
player busts and loses in 1 moves
Game #: 1957
player loses in 1 moves
Game #: 1958
player wins in 1 moves
Game #: 1959
player wins in 0 moves
Game #: 1960
player wins in 2 moves
Game #: 1961
player busts and loses in 1 moves
Game #: 1962
player wins in 1 moves
Game #: 1963
dealer busts and player wins in 1 moves
Game #: 1964
player loses in 1 moves
Game #: 1965
dealer busts and player wins in 1 moves
Game #: 1966
player loses in 1 moves
Game #: 1967
player loses in 1 moves
Game #: 1968
player busts and loses in 1 moves
Game #: 1969
player wins in 2 moves
Game #: 1970
player loses in 1 moves
Game #: 1971
draw in 1 moves
Game #: 1972
dealer busts and player wins in 1 moves
Game #: 1973
dealer busts and player wins in 1 moves
Game #: 1974
player loses in 2 moves
Game #: 1975
player busts and loses in 1 moves
Game #: 1976
player wins in 0 moves
Game #: 1977
player busts and loses in 2 moves
Game #: 1978
player wins in 3 moves
Game #: 1979
player busts and loses in 1 moves
Game #: 1980
player busts and loses in 1 moves
Game #: 1981
dealer busts and player wins in 3 moves
Game #: 1982
player loses in 1 moves
Game #: 1983
player loses in 1 moves
Game #: 1984
draw in 1 moves
Game #: 1985
player loses in 1 moves
Game #: 1986
player busts and loses in 1 moves
Game #: 1987
dealer busts and player wins in 1 moves
Game #: 1988
player loses in 1 moves
Game #: 1989
player busts and loses in 1 moves
Game #: 1990
player busts and loses in 1 moves
Game #: 1991
player wins in 1 moves
Game #: 1992
player loses in 1 moves
Game #: 1993
dealer busts and player wins in 2 moves
Game #: 1994
player loses in 1 moves
Game #: 1995
player loses in 1 moves
Game #: 1996
player loses in 1 moves
Game #: 1997
player busts and loses in 2 moves
Game #: 1998
dealer busts and player wins in 1 moves
Game #: 1999
player loses in 1 moves
Game #: 2000
dealer busts and player wins in 2 moves
Game #: 2001
player loses in 2 moves
Game #: 2002
player busts and loses in 2 moves
Game #: 2003
player loses in 1 moves
Game #: 2004
player wins in 0 moves
Game #: 2005
player wins in 1 moves
Game #: 2006
player loses in 1 moves
Game #: 2007
player busts and loses in 1 moves
Game #: 2008
player wins in 1 moves
Game #: 2009
player loses in 1 moves
Game #: 2010
draw in 1 moves
Game #: 2011
dealer busts and player wins in 1 moves
Game #: 2012
player busts and loses in 1 moves
Game #: 2013
player busts and loses in 1 moves
Game #: 2014
player loses in 1 moves
Game #: 2015
dealer busts and player wins in 1 moves
Game #: 2016
player loses in 1 moves
Game #: 2017
player wins in 1 moves
Game #: 2018
player loses in 1 moves
Game #: 2019
player wins in 2 moves
Game #: 2020
dealer busts and player wins in 1 moves
Game #: 2021
dealer busts and player wins in 1 moves
Game #: 2022
player busts and loses in 1 moves
Game #: 2023
player wins in 1 moves
Game #: 2024
player busts and loses in 2 moves
Game #: 2025
player loses in 1 moves
Game #: 2026
player busts and loses in 1 moves
Game #: 2027
dealer busts and player wins in 2 moves
Game #: 2028
player wins in 0 moves
Game #: 2029
player busts and loses in 1 moves
Game #: 2030
player loses in 1 moves
Game #: 2031
dealer busts and player wins in 2 moves
Game #: 2032
player wins in 0 moves
Game #: 2033
player loses in 1 moves
Game #: 2034
player loses in 3 moves
Game #: 2035
player busts and loses in 2 moves
Game #: 2036
draw in 1 moves
Game #: 2037
player wins in 0 moves
Game #: 2038
player loses in 1 moves
Game #: 2039
player loses in 2 moves
Game #: 2040
player loses in 1 moves
Game #: 2041
player loses in 1 moves
Game #: 2042
dealer busts and player wins in 1 moves
Game #: 2043
player busts and loses in 1 moves
Game #: 2044
player loses in 1 moves
Game #: 2045
player loses in 1 moves
Game #: 2046
player busts and loses in 1 moves
Game #: 2047
player loses in 1 moves
Game #: 2048
dealer busts and player wins in 1 moves
Game #: 2049
player loses in 1 moves
Game #: 2050
player busts and loses in 1 moves
Game #: 2051
player wins in 1 moves
Game #: 2052
player busts and loses in 1 moves
Game #: 2053
player wins in 0 moves
Game #: 2054
player loses in 1 moves
Game #: 2055
player loses in 1 moves
Game #: 2056
player loses in 1 moves
Game #: 2057
player loses in 2 moves
Game #: 2058
player busts and loses in 1 moves
Game #: 2059
dealer busts and player wins in 2 moves
Game #: 2060
draw in 1 moves
Game #: 2061
player busts and loses in 1 moves
Game #: 2062
player busts and loses in 1 moves
Game #: 2063
player loses in 2 moves
Game #: 2064
player wins in 1 moves
Game #: 2065
player busts and loses in 1 moves
Game #: 2066
player wins in 0 moves
Game #: 2067
player loses in 1 moves
Game #: 2068
player busts and loses in 1 moves
Game #: 2069
player loses in 1 moves
Game #: 2070
player busts and loses in 1 moves
Game #: 2071
player loses in 2 moves
Game #: 2072
player loses in 1 moves
Game #: 2073
player loses in 1 moves
Game #: 2074
player busts and loses in 2 moves
Game #: 2075
draw in 1 moves
Game #: 2076
player loses in 1 moves
Game #: 2077
player loses in 1 moves
Game #: 2078
player loses in 1 moves
Game #: 2079
player loses in 1 moves
Game #: 2080
player busts and loses in 2 moves
Game #: 2081
player loses in 1 moves
Game #: 2082
dealer busts and player wins in 1 moves
Game #: 2083
player busts and loses in 1 moves
Game #: 2084
player wins in 0 moves
Game #: 2085
dealer busts and player wins in 1 moves
Game #: 2086
player wins in 0 moves
Game #: 2087
player loses in 1 moves
Game #: 2088
player busts and loses in 2 moves
Game #: 2089
player loses in 1 moves
Game #: 2090
player busts and loses in 1 moves
Game #: 2091
player wins in 0 moves
Game #: 2092
player busts and loses in 2 moves
Game #: 2093
player busts and loses in 1 moves
Game #: 2094
player loses in 3 moves
Game #: 2095
dealer busts and player wins in 1 moves
Game #: 2096
draw in 1 moves
Game #: 2097
draw in 1 moves
Game #: 2098
player busts and loses in 1 moves
Game #: 2099
player loses in 1 moves
Game #: 2100
player busts and loses in 1 moves
Game #: 2101
draw in 1 moves
Game #: 2102
player busts and loses in 1 moves
Game #: 2103
player loses in 2 moves
Game #: 2104
player wins in 1 moves
Game #: 2105
player busts and loses in 1 moves
Game #: 2106
player wins in 0 moves
Game #: 2107
dealer busts and player wins in 1 moves
Game #: 2108
player busts and loses in 2 moves
Game #: 2109
player loses in 1 moves
Game #: 2110
player loses in 1 moves
Game #: 2111
player busts and loses in 1 moves
Game #: 2112
player wins in 0 moves
Game #: 2113
player wins in 1 moves
Game #: 2114
player busts and loses in 1 moves
Game #: 2115
player loses in 1 moves
Game #: 2116
player wins in 1 moves
Game #: 2117
player loses in 1 moves
Game #: 2118
player wins in 0 moves
Game #: 2119
player wins in 2 moves
Game #: 2120
player busts and loses in 1 moves
Game #: 2121
player busts and loses in 1 moves
Game #: 2122
dealer busts and player wins in 1 moves
Game #: 2123
player wins in 1 moves
Game #: 2124
player busts and loses in 2 moves
Game #: 2125
player loses in 1 moves
Game #: 2126
player busts and loses in 1 moves
Game #: 2127
player wins in 0 moves
Game #: 2128
dealer busts and player wins in 1 moves
Game #: 2129
player busts and loses in 1 moves
Game #: 2130
player loses in 1 moves
Game #: 2131
player loses in 1 moves
Game #: 2132
player loses in 3 moves
Game #: 2133
player loses in 1 moves
Game #: 2134
player wins in 1 moves
Game #: 2135
dealer busts and player wins in 1 moves
Game #: 2136
player loses in 1 moves
Game #: 2137
player wins in 0 moves
Game #: 2138
draw in 1 moves
Game #: 2139
player busts and loses in 1 moves
Game #: 2140
player busts and loses in 1 moves
Game #: 2141
player loses in 1 moves
Game #: 2142
player loses in 2 moves
Game #: 2143
player busts and loses in 2 moves
Game #: 2144
player busts and loses in 3 moves
Game #: 2145
player busts and loses in 1 moves
Game #: 2146
dealer busts and player wins in 1 moves
Game #: 2147
dealer busts and player wins in 1 moves
Game #: 2148
dealer busts and player wins in 1 moves
Game #: 2149
player loses in 1 moves
Game #: 2150
dealer busts and player wins in 1 moves
Game #: 2151
player busts and loses in 1 moves
Game #: 2152
player loses in 1 moves
Game #: 2153
player loses in 2 moves
Game #: 2154
player busts and loses in 2 moves
Game #: 2155
player wins in 0 moves
Game #: 2156
player wins in 0 moves
Game #: 2157
player loses in 2 moves
Game #: 2158
player busts and loses in 1 moves
Game #: 2159
player loses in 1 moves
Game #: 2160
player loses in 1 moves
Game #: 2161
player loses in 1 moves
Game #: 2162
dealer busts and player wins in 1 moves
Game #: 2163
player loses in 1 moves
Game #: 2164
dealer busts and player wins in 1 moves
Game #: 2165
player loses in 1 moves
Game #: 2166
player loses in 1 moves
Game #: 2167
dealer busts and player wins in 2 moves
Game #: 2168
dealer busts and player wins in 3 moves
Game #: 2169
player wins in 0 moves
Game #: 2170
dealer busts and player wins in 1 moves
Game #: 2171
player loses in 1 moves
Game #: 2172
player wins in 1 moves
Game #: 2173
player wins in 1 moves
Game #: 2174
player loses in 1 moves
Game #: 2175
dealer busts and player wins in 1 moves
Game #: 2176
dealer busts and player wins in 1 moves
Game #: 2177
player wins in 1 moves
Game #: 2178
player wins in 1 moves
Game #: 2179
player busts and loses in 1 moves
Game #: 2180
draw in 1 moves
Game #: 2181
player wins in 0 moves
Game #: 2182
player wins in 1 moves
Game #: 2183
player loses in 1 moves
Game #: 2184
player busts and loses in 1 moves
Game #: 2185
dealer busts and player wins in 1 moves
Game #: 2186
player loses in 2 moves
Game #: 2187
player busts and loses in 1 moves
Game #: 2188
dealer busts and player wins in 1 moves
Game #: 2189
player busts and loses in 1 moves
Game #: 2190
player loses in 1 moves
Game #: 2191
player wins in 1 moves
Game #: 2192
dealer busts and player wins in 1 moves
Game #: 2193
player wins in 1 moves
Game #: 2194
player loses in 1 moves
Game #: 2195
player busts and loses in 1 moves
Game #: 2196
player busts and loses in 1 moves
Game #: 2197
dealer busts and player wins in 1 moves
Game #: 2198
dealer busts and player wins in 1 moves
Game #: 2199
dealer busts and player wins in 1 moves
Game #: 2200
player busts and loses in 1 moves
Game #: 2201
dealer busts and player wins in 1 moves
Game #: 2202
player loses in 1 moves
Game #: 2203
player wins in 0 moves
Game #: 2204
player loses in 1 moves
Game #: 2205
dealer busts and player wins in 2 moves
Game #: 2206
player loses in 1 moves
Game #: 2207
player loses in 1 moves
Game #: 2208
dealer busts and player wins in 1 moves
Game #: 2209
player loses in 1 moves
Game #: 2210
player busts and loses in 1 moves
Game #: 2211
dealer busts and player wins in 1 moves
Game #: 2212
dealer busts and player wins in 2 moves
Game #: 2213
player loses in 1 moves
Game #: 2214
dealer busts and player wins in 1 moves
Game #: 2215
player busts and loses in 1 moves
Game #: 2216
player loses in 1 moves
Game #: 2217
player loses in 1 moves
Game #: 2218
player busts and loses in 1 moves
Game #: 2219
player loses in 1 moves
Game #: 2220
dealer busts and player wins in 1 moves
Game #: 2221
player loses in 1 moves
Game #: 2222
player loses in 1 moves
Game #: 2223
draw in 1 moves
Game #: 2224
player loses in 1 moves
Game #: 2225
player wins in 1 moves
Game #: 2226
player loses in 1 moves
Game #: 2227
player wins in 0 moves
Game #: 2228
player wins in 0 moves
Game #: 2229
draw in 2 moves
Game #: 2230
player busts and loses in 1 moves
Game #: 2231
dealer busts and player wins in 1 moves
Game #: 2232
player loses in 1 moves
Game #: 2233
dealer busts and player wins in 2 moves
Game #: 2234
player loses in 1 moves
Game #: 2235
player wins in 1 moves
Game #: 2236
player busts and loses in 1 moves
Game #: 2237
dealer busts and player wins in 1 moves
Game #: 2238
dealer busts and player wins in 2 moves
Game #: 2239
player busts and loses in 1 moves
Game #: 2240
dealer busts and player wins in 1 moves
Game #: 2241
player loses in 1 moves
Game #: 2242
player busts and loses in 2 moves
Game #: 2243
player loses in 2 moves
Game #: 2244
player loses in 1 moves
Game #: 2245
dealer busts and player wins in 1 moves
Game #: 2246
player wins in 1 moves
Game #: 2247
player loses in 1 moves
Game #: 2248
player loses in 3 moves
Game #: 2249
player wins in 0 moves
Game #: 2250
player loses in 1 moves
Game #: 2251
player loses in 2 moves
Game #: 2252
player busts and loses in 1 moves
Game #: 2253
player loses in 1 moves
Game #: 2254
player busts and loses in 1 moves
Game #: 2255
player loses in 1 moves
Game #: 2256
dealer busts and player wins in 2 moves
Game #: 2257
player busts and loses in 1 moves
Game #: 2258
dealer busts and player wins in 1 moves
Game #: 2259
player loses in 1 moves
Game #: 2260
dealer busts and player wins in 1 moves
Game #: 2261
player wins in 0 moves
Game #: 2262
player wins in 0 moves
Game #: 2263
player wins in 1 moves
Game #: 2264
player wins in 2 moves
Game #: 2265
dealer busts and player wins in 1 moves
Game #: 2266
draw in 1 moves
Game #: 2267
player busts and loses in 1 moves
Game #: 2268
player busts and loses in 1 moves
Game #: 2269
player busts and loses in 1 moves
Game #: 2270
dealer busts and player wins in 1 moves
Game #: 2271
dealer busts and player wins in 1 moves
Game #: 2272
player loses in 2 moves
Game #: 2273
dealer busts and player wins in 1 moves
Game #: 2274
player busts and loses in 1 moves
Game #: 2275
player loses in 1 moves
Game #: 2276
player loses in 1 moves
Game #: 2277
player loses in 1 moves
Game #: 2278
dealer busts and player wins in 2 moves
Game #: 2279
player busts and loses in 1 moves
Game #: 2280
player busts and loses in 1 moves
Game #: 2281
player loses in 1 moves
Game #: 2282
player busts and loses in 1 moves
Game #: 2283
player loses in 1 moves
Game #: 2284
player loses in 1 moves
Game #: 2285
player loses in 1 moves
Game #: 2286
player loses in 1 moves
Game #: 2287
player loses in 2 moves
Game #: 2288
dealer busts and player wins in 1 moves
Game #: 2289
player loses in 1 moves
Game #: 2290
player wins in 1 moves
Game #: 2291
player loses in 1 moves
Game #: 2292
player wins in 1 moves
Game #: 2293
player loses in 1 moves
Game #: 2294
player busts and loses in 1 moves
Game #: 2295
player wins in 1 moves
Game #: 2296
player busts and loses in 1 moves
Game #: 2297
player loses in 1 moves
Game #: 2298
player loses in 1 moves
Game #: 2299
player busts and loses in 1 moves
Game #: 2300
player loses in 1 moves
Game #: 2301
player wins in 1 moves
Game #: 2302
player wins in 0 moves
Game #: 2303
player loses in 1 moves
Game #: 2304
player wins in 0 moves
Game #: 2305
dealer busts and player wins in 1 moves
Game #: 2306
player loses in 2 moves
Game #: 2307
player wins in 0 moves
Game #: 2308
draw in 1 moves
Game #: 2309
player wins in 1 moves
Game #: 2310
player wins in 1 moves
Game #: 2311
player busts and loses in 1 moves
Game #: 2312
player loses in 1 moves
Game #: 2313
player loses in 2 moves
Game #: 2314
player loses in 1 moves
Game #: 2315
draw in 2 moves
Game #: 2316
player busts and loses in 1 moves
Game #: 2317
player loses in 1 moves
Game #: 2318
player loses in 1 moves
Game #: 2319
dealer busts and player wins in 1 moves
Game #: 2320
dealer busts and player wins in 1 moves
Game #: 2321
player loses in 1 moves
Game #: 2322
player wins in 1 moves
Game #: 2323
player loses in 1 moves
Game #: 2324
player wins in 0 moves
Game #: 2325
player loses in 1 moves
Game #: 2326
player loses in 1 moves
Game #: 2327
player loses in 1 moves
Game #: 2328
player loses in 1 moves
Game #: 2329
player busts and loses in 1 moves
Game #: 2330
player busts and loses in 1 moves
Game #: 2331
player loses in 1 moves
Game #: 2332
player loses in 1 moves
Game #: 2333
player wins in 0 moves
Game #: 2334
player loses in 2 moves
Game #: 2335
player loses in 1 moves
Game #: 2336
player loses in 1 moves
Game #: 2337
player busts and loses in 1 moves
Game #: 2338
player busts and loses in 1 moves
Game #: 2339
player loses in 1 moves
Game #: 2340
player loses in 1 moves
Game #: 2341
player busts and loses in 1 moves
Game #: 2342
player wins in 1 moves
Game #: 2343
player wins in 1 moves
Game #: 2344
player loses in 1 moves
Game #: 2345
player busts and loses in 1 moves
Game #: 2346
player loses in 2 moves
Game #: 2347
player loses in 1 moves
Game #: 2348
player busts and loses in 1 moves
Game #: 2349
dealer busts and player wins in 1 moves
Game #: 2350
player busts and loses in 1 moves
Game #: 2351
player busts and loses in 1 moves
Game #: 2352
player busts and loses in 1 moves
Game #: 2353
player busts and loses in 1 moves
Game #: 2354
dealer busts and player wins in 2 moves
Game #: 2355
player loses in 3 moves
Game #: 2356
player busts and loses in 1 moves
Game #: 2357
player busts and loses in 1 moves
Game #: 2358
player loses in 1 moves
Game #: 2359
dealer busts and player wins in 1 moves
Game #: 2360
player wins in 0 moves
Game #: 2361
draw in 1 moves
Game #: 2362
dealer busts and player wins in 1 moves
Game #: 2363
player loses in 1 moves
Game #: 2364
player busts and loses in 1 moves
Game #: 2365
player busts and loses in 1 moves
Game #: 2366
dealer busts and player wins in 2 moves
Game #: 2367
player loses in 1 moves
Game #: 2368
player loses in 2 moves
Game #: 2369
draw in 1 moves
Game #: 2370
player loses in 2 moves
Game #: 2371
player loses in 2 moves
Game #: 2372
player loses in 1 moves
Game #: 2373
player loses in 1 moves
Game #: 2374
player busts and loses in 1 moves
Game #: 2375
dealer busts and player wins in 1 moves
Game #: 2376
player busts and loses in 1 moves
Game #: 2377
player loses in 1 moves
Game #: 2378
player wins in 1 moves
Game #: 2379
player loses in 1 moves
Game #: 2380
player loses in 1 moves
Game #: 2381
player loses in 1 moves
Game #: 2382
draw in 1 moves
Game #: 2383
player wins in 0 moves
Game #: 2384
player busts and loses in 1 moves
Game #: 2385
player busts and loses in 1 moves
Game #: 2386
player busts and loses in 1 moves
Game #: 2387
player wins in 2 moves
Game #: 2388
player loses in 3 moves
Game #: 2389
player busts and loses in 1 moves
Game #: 2390
player busts and loses in 1 moves
Game #: 2391
dealer busts and player wins in 1 moves
Game #: 2392
dealer busts and player wins in 1 moves
Game #: 2393
player loses in 1 moves
Game #: 2394
player loses in 1 moves
Game #: 2395
player busts and loses in 1 moves
Game #: 2396
dealer busts and player wins in 1 moves
Game #: 2397
player loses in 1 moves
Game #: 2398
draw in 1 moves
Game #: 2399
draw in 1 moves
Game #: 2400
player busts and loses in 1 moves
Game #: 2401
dealer busts and player wins in 2 moves
Game #: 2402
player wins in 0 moves
Game #: 2403
dealer busts and player wins in 1 moves
Game #: 2404
dealer busts and player wins in 1 moves
Game #: 2405
player busts and loses in 1 moves
Game #: 2406
player busts and loses in 1 moves
Game #: 2407
player wins in 2 moves
Game #: 2408
player loses in 1 moves
Game #: 2409
player wins in 2 moves
Game #: 2410
player loses in 1 moves
Game #: 2411
player busts and loses in 1 moves
Game #: 2412
player busts and loses in 2 moves
Game #: 2413
player busts and loses in 1 moves
Game #: 2414
player wins in 0 moves
Game #: 2415
player loses in 2 moves
Game #: 2416
dealer busts and player wins in 1 moves
Game #: 2417
player busts and loses in 1 moves
Game #: 2418
dealer busts and player wins in 1 moves
Game #: 2419
player busts and loses in 1 moves
Game #: 2420
player loses in 1 moves
Game #: 2421
player busts and loses in 1 moves
Game #: 2422
player busts and loses in 1 moves
Game #: 2423
player loses in 1 moves
Game #: 2424
player busts and loses in 1 moves
Game #: 2425
dealer busts and player wins in 1 moves
Game #: 2426
player busts and loses in 1 moves
Game #: 2427
player wins in 0 moves
Game #: 2428
player loses in 1 moves
Game #: 2429
dealer busts and player wins in 1 moves
Game #: 2430
player loses in 2 moves
Game #: 2431
dealer busts and player wins in 1 moves
Game #: 2432
player busts and loses in 1 moves
Game #: 2433
player loses in 1 moves
Game #: 2434
player loses in 1 moves
Game #: 2435
player loses in 1 moves
Game #: 2436
dealer busts and player wins in 1 moves
Game #: 2437
player wins in 1 moves
Game #: 2438
player busts and loses in 1 moves
Game #: 2439
draw in 1 moves
Game #: 2440
draw in 1 moves
Game #: 2441
player busts and loses in 2 moves
Game #: 2442
player loses in 1 moves
Game #: 2443
player busts and loses in 1 moves
Game #: 2444
player wins in 0 moves
Game #: 2445
player wins in 2 moves
Game #: 2446
draw in 1 moves
Game #: 2447
player wins in 1 moves
Game #: 2448
dealer busts and player wins in 1 moves
Game #: 2449
player busts and loses in 1 moves
Game #: 2450
player wins in 0 moves
Game #: 2451
player loses in 1 moves
Game #: 2452
player wins in 1 moves
Game #: 2453
player busts and loses in 1 moves
Game #: 2454
player wins in 1 moves
Game #: 2455
player busts and loses in 1 moves
Game #: 2456
dealer busts and player wins in 1 moves
Game #: 2457
player busts and loses in 1 moves
Game #: 2458
player busts and loses in 1 moves
Game #: 2459
player busts and loses in 1 moves
Game #: 2460
draw in 1 moves
Game #: 2461
player wins in 1 moves
Game #: 2462
player loses in 1 moves
Game #: 2463
player wins in 1 moves
Game #: 2464
player loses in 1 moves
Game #: 2465
player loses in 1 moves
Game #: 2466
player loses in 2 moves
Game #: 2467
player busts and loses in 1 moves
Game #: 2468
player loses in 1 moves
Game #: 2469
dealer busts and player wins in 1 moves
Game #: 2470
player loses in 2 moves
Game #: 2471
player loses in 1 moves
Game #: 2472
player busts and loses in 1 moves
Game #: 2473
player busts and loses in 1 moves
Game #: 2474
dealer busts and player wins in 2 moves
Game #: 2475
dealer busts and player wins in 2 moves
Game #: 2476
player busts and loses in 2 moves
Game #: 2477
player loses in 1 moves
Game #: 2478
draw in 1 moves
Game #: 2479
player wins in 0 moves
Game #: 2480
player loses in 2 moves
Game #: 2481
player wins in 0 moves
Game #: 2482
player loses in 1 moves
Game #: 2483
player loses in 2 moves
Game #: 2484
player busts and loses in 1 moves
Game #: 2485
player busts and loses in 1 moves
Game #: 2486
player loses in 1 moves
Game #: 2487
dealer busts and player wins in 1 moves
Game #: 2488
player wins in 1 moves
Game #: 2489
player busts and loses in 1 moves
Game #: 2490
player busts and loses in 1 moves
Game #: 2491
player loses in 2 moves
Game #: 2492
player loses in 2 moves
Game #: 2493
player loses in 1 moves
Game #: 2494
player busts and loses in 2 moves
Game #: 2495
player busts and loses in 1 moves
Game #: 2496
player busts and loses in 1 moves
Game #: 2497
player busts and loses in 1 moves
Game #: 2498
player wins in 1 moves
Game #: 2499
player busts and loses in 1 moves
Game #: 2500
player wins in 1 moves
Game #: 2501
player loses in 1 moves
Game #: 2502
draw in 2 moves
Game #: 2503
player loses in 1 moves
Game #: 2504
player loses in 1 moves
Game #: 2505
dealer busts and player wins in 1 moves
Game #: 2506
player busts and loses in 1 moves
Game #: 2507
player loses in 1 moves
Game #: 2508
player busts and loses in 1 moves
Game #: 2509
player busts and loses in 1 moves
Game #: 2510
player wins in 0 moves
Game #: 2511
player wins in 0 moves
Game #: 2512
player wins in 1 moves
Game #: 2513
player loses in 1 moves
Game #: 2514
player loses in 1 moves
Game #: 2515
player loses in 1 moves
Game #: 2516
player loses in 1 moves
Game #: 2517
dealer busts and player wins in 1 moves
Game #: 2518
player wins in 0 moves
Game #: 2519
player loses in 1 moves
Game #: 2520
player loses in 2 moves
Game #: 2521
player loses in 2 moves
Game #: 2522
player loses in 1 moves
Game #: 2523
player loses in 1 moves
Game #: 2524
player busts and loses in 1 moves
Game #: 2525
player loses in 1 moves
Game #: 2526
dealer busts and player wins in 2 moves
Game #: 2527
player busts and loses in 1 moves
Game #: 2528
player busts and loses in 1 moves
Game #: 2529
draw in 1 moves
Game #: 2530
player busts and loses in 1 moves
Game #: 2531
player wins in 2 moves
Game #: 2532
player wins in 0 moves
Game #: 2533
player loses in 1 moves
Game #: 2534
player busts and loses in 1 moves
Game #: 2535
player busts and loses in 1 moves
Game #: 2536
player loses in 2 moves
Game #: 2537
player busts and loses in 1 moves
Game #: 2538
player wins in 1 moves
Game #: 2539
dealer busts and player wins in 1 moves
Game #: 2540
player wins in 1 moves
Game #: 2541
player loses in 1 moves
Game #: 2542
player wins in 0 moves
Game #: 2543
dealer busts and player wins in 1 moves
Game #: 2544
player busts and loses in 2 moves
Game #: 2545
player loses in 1 moves
Game #: 2546
player wins in 0 moves
Game #: 2547
player busts and loses in 1 moves
Game #: 2548
player wins in 0 moves
Game #: 2549
player loses in 1 moves
Game #: 2550
player loses in 1 moves
Game #: 2551
player loses in 1 moves
Game #: 2552
player loses in 1 moves
Game #: 2553
draw in 2 moves
Game #: 2554
player loses in 1 moves
Game #: 2555
player busts and loses in 1 moves
Game #: 2556
player loses in 1 moves
Game #: 2557
player busts and loses in 1 moves
Game #: 2558
dealer busts and player wins in 1 moves
Game #: 2559
player busts and loses in 1 moves
Game #: 2560
player busts and loses in 1 moves
Game #: 2561
player busts and loses in 1 moves
Game #: 2562
player busts and loses in 1 moves
Game #: 2563
player loses in 1 moves
Game #: 2564
player busts and loses in 2 moves
Game #: 2565
dealer busts and player wins in 1 moves
Game #: 2566
player busts and loses in 1 moves
Game #: 2567
player wins in 0 moves
Game #: 2568
player busts and loses in 1 moves
Game #: 2569
player loses in 1 moves
Game #: 2570
player busts and loses in 1 moves
Game #: 2571
player loses in 1 moves
Game #: 2572
draw in 1 moves
Game #: 2573
player loses in 1 moves
Game #: 2574
player loses in 1 moves
Game #: 2575
player loses in 1 moves
Game #: 2576
player busts and loses in 1 moves
Game #: 2577
player busts and loses in 1 moves
Game #: 2578
player loses in 1 moves
Game #: 2579
player busts and loses in 1 moves
Game #: 2580
player busts and loses in 1 moves
Game #: 2581
player loses in 1 moves
Game #: 2582
dealer busts and player wins in 1 moves
Game #: 2583
dealer busts and player wins in 1 moves
Game #: 2584
player loses in 1 moves
Game #: 2585
player wins in 0 moves
Game #: 2586
dealer busts and player wins in 2 moves
Game #: 2587
player loses in 1 moves
Game #: 2588
player loses in 1 moves
Game #: 2589
draw in 2 moves
Game #: 2590
player loses in 1 moves
Game #: 2591
dealer busts and player wins in 1 moves
Game #: 2592
player loses in 1 moves
Game #: 2593
dealer busts and player wins in 1 moves
Game #: 2594
dealer busts and player wins in 2 moves
Game #: 2595
dealer busts and player wins in 2 moves
Game #: 2596
player loses in 1 moves
Game #: 2597
player busts and loses in 2 moves
Game #: 2598
dealer busts and player wins in 1 moves
Game #: 2599
player busts and loses in 1 moves
Game #: 2600
player busts and loses in 1 moves
Game #: 2601
draw in 2 moves
Game #: 2602
player loses in 1 moves
Game #: 2603
player wins in 3 moves
Game #: 2604
player loses in 1 moves
Game #: 2605
player busts and loses in 3 moves
Game #: 2606
dealer busts and player wins in 1 moves
Game #: 2607
player busts and loses in 1 moves
Game #: 2608
player loses in 1 moves
Game #: 2609
player loses in 1 moves
Game #: 2610
player loses in 1 moves
Game #: 2611
player busts and loses in 1 moves
Game #: 2612
player loses in 1 moves
Game #: 2613
player busts and loses in 1 moves
Game #: 2614
player busts and loses in 3 moves
Game #: 2615
player busts and loses in 1 moves
Game #: 2616
player wins in 1 moves
Game #: 2617
player loses in 1 moves
Game #: 2618
player wins in 1 moves
Game #: 2619
player loses in 1 moves
Game #: 2620
player busts and loses in 1 moves
Game #: 2621
player loses in 1 moves
Game #: 2622
player busts and loses in 1 moves
Game #: 2623
dealer busts and player wins in 1 moves
Game #: 2624
dealer busts and player wins in 2 moves
Game #: 2625
draw in 1 moves
Game #: 2626
player busts and loses in 1 moves
Game #: 2627
player loses in 1 moves
Game #: 2628
dealer busts and player wins in 1 moves
Game #: 2629
player loses in 1 moves
Game #: 2630
dealer busts and player wins in 1 moves
Game #: 2631
player loses in 1 moves
Game #: 2632
player wins in 1 moves
Game #: 2633
dealer busts and player wins in 2 moves
Game #: 2634
player busts and loses in 1 moves
Game #: 2635
player wins in 1 moves
Game #: 2636
player busts and loses in 1 moves
Game #: 2637
player busts and loses in 1 moves
Game #: 2638
dealer busts and player wins in 1 moves
Game #: 2639
player busts and loses in 1 moves
Game #: 2640
player loses in 1 moves
Game #: 2641
draw in 1 moves
Game #: 2642
player busts and loses in 1 moves
Game #: 2643
player wins in 1 moves
Game #: 2644
player wins in 0 moves
Game #: 2645
player loses in 1 moves
Game #: 2646
player loses in 1 moves
Game #: 2647
player busts and loses in 1 moves
Game #: 2648
player busts and loses in 2 moves
Game #: 2649
dealer busts and player wins in 1 moves
Game #: 2650
player busts and loses in 1 moves
Game #: 2651
player loses in 1 moves
Game #: 2652
player wins in 1 moves
Game #: 2653
dealer busts and player wins in 2 moves
Game #: 2654
player busts and loses in 2 moves
Game #: 2655
player loses in 1 moves
Game #: 2656
player busts and loses in 1 moves
Game #: 2657
dealer busts and player wins in 1 moves
Game #: 2658
player busts and loses in 1 moves
Game #: 2659
player busts and loses in 2 moves
Game #: 2660
player busts and loses in 1 moves
Game #: 2661
dealer busts and player wins in 1 moves
Game #: 2662
player loses in 1 moves
Game #: 2663
player loses in 1 moves
Game #: 2664
player loses in 1 moves
Game #: 2665
player loses in 1 moves
Game #: 2666
draw in 1 moves
Game #: 2667
player loses in 2 moves
Game #: 2668
player loses in 1 moves
Game #: 2669
player wins in 1 moves
Game #: 2670
player wins in 1 moves
Game #: 2671
dealer busts and player wins in 1 moves
Game #: 2672
player busts and loses in 1 moves
Game #: 2673
dealer busts and player wins in 1 moves
Game #: 2674
player busts and loses in 2 moves
Game #: 2675
draw in 1 moves
Game #: 2676
draw in 1 moves
Game #: 2677
player loses in 1 moves
Game #: 2678
dealer busts and player wins in 1 moves
Game #: 2679
player busts and loses in 1 moves
Game #: 2680
player busts and loses in 1 moves
Game #: 2681
player busts and loses in 1 moves
Game #: 2682
player loses in 1 moves
Game #: 2683
player loses in 1 moves
Game #: 2684
player loses in 1 moves
Game #: 2685
dealer busts and player wins in 3 moves
Game #: 2686
player busts and loses in 1 moves
Game #: 2687
player busts and loses in 1 moves
Game #: 2688
dealer busts and player wins in 1 moves
Game #: 2689
player busts and loses in 1 moves
Game #: 2690
dealer busts and player wins in 1 moves
Game #: 2691
player loses in 1 moves
Game #: 2692
player busts and loses in 1 moves
Game #: 2693
dealer busts and player wins in 1 moves
Game #: 2694
player wins in 2 moves
Game #: 2695
player loses in 1 moves
Game #: 2696
player busts and loses in 2 moves
Game #: 2697
dealer busts and player wins in 2 moves
Game #: 2698
player loses in 1 moves
Game #: 2699
player loses in 1 moves
Game #: 2700
draw in 1 moves
Game #: 2701
player busts and loses in 1 moves
Game #: 2702
player busts and loses in 1 moves
Game #: 2703
player loses in 1 moves
Game #: 2704
player busts and loses in 2 moves
Game #: 2705
draw in 1 moves
Game #: 2706
player wins in 1 moves
Game #: 2707
player busts and loses in 1 moves
Game #: 2708
dealer busts and player wins in 1 moves
Game #: 2709
dealer busts and player wins in 1 moves
Game #: 2710
player busts and loses in 3 moves
Game #: 2711
dealer busts and player wins in 1 moves
Game #: 2712
player busts and loses in 2 moves
Game #: 2713
draw in 2 moves
Game #: 2714
player wins in 2 moves
Game #: 2715
draw in 1 moves
Game #: 2716
player loses in 1 moves
Game #: 2717
draw in 2 moves
Game #: 2718
dealer busts and player wins in 1 moves
Game #: 2719
player busts and loses in 1 moves
Game #: 2720
dealer busts and player wins in 1 moves
Game #: 2721
player wins in 1 moves
Game #: 2722
player busts and loses in 1 moves
Game #: 2723
player loses in 1 moves
Game #: 2724
dealer busts and player wins in 1 moves
Game #: 2725
player busts and loses in 2 moves
Game #: 2726
player loses in 1 moves
Game #: 2727
player loses in 1 moves
Game #: 2728
dealer busts and player wins in 2 moves
Game #: 2729
player busts and loses in 2 moves
Game #: 2730
player loses in 1 moves
Game #: 2731
draw in 1 moves
Game #: 2732
player loses in 1 moves
Game #: 2733
dealer busts and player wins in 1 moves
Game #: 2734
dealer busts and player wins in 1 moves
Game #: 2735
dealer busts and player wins in 1 moves
Game #: 2736
player wins in 0 moves
Game #: 2737
player loses in 1 moves
Game #: 2738
player busts and loses in 1 moves
Game #: 2739
dealer busts and player wins in 1 moves
Game #: 2740
player loses in 1 moves
Game #: 2741
player wins in 1 moves
Game #: 2742
player loses in 2 moves
Game #: 2743
player loses in 1 moves
Game #: 2744
player loses in 1 moves
Game #: 2745
player busts and loses in 1 moves
Game #: 2746
player loses in 3 moves
Game #: 2747
player loses in 1 moves
Game #: 2748
player wins in 1 moves
Game #: 2749
dealer busts and player wins in 1 moves
Game #: 2750
player loses in 1 moves
Game #: 2751
player busts and loses in 2 moves
Game #: 2752
dealer busts and player wins in 1 moves
Game #: 2753
player busts and loses in 1 moves
Game #: 2754
player wins in 1 moves
Game #: 2755
player loses in 1 moves
Game #: 2756
player loses in 2 moves
Game #: 2757
dealer busts and player wins in 1 moves
Game #: 2758
player wins in 1 moves
Game #: 2759
dealer busts and player wins in 3 moves
Game #: 2760
player busts and loses in 1 moves
Game #: 2761
player wins in 1 moves
Game #: 2762
dealer busts and player wins in 2 moves
Game #: 2763
player loses in 2 moves
Game #: 2764
player busts and loses in 1 moves
Game #: 2765
player busts and loses in 2 moves
Game #: 2766
player loses in 1 moves
Game #: 2767
dealer busts and player wins in 2 moves
Game #: 2768
player busts and loses in 1 moves
Game #: 2769
player busts and loses in 2 moves
Game #: 2770
player busts and loses in 1 moves
Game #: 2771
player busts and loses in 2 moves
Game #: 2772
player loses in 1 moves
Game #: 2773
player busts and loses in 1 moves
Game #: 2774
draw in 1 moves
Game #: 2775
player loses in 1 moves
Game #: 2776
player loses in 1 moves
Game #: 2777
player busts and loses in 1 moves
Game #: 2778
dealer busts and player wins in 1 moves
Game #: 2779
player loses in 1 moves
Game #: 2780
player loses in 1 moves
Game #: 2781
player loses in 1 moves
Game #: 2782
player wins in 0 moves
Game #: 2783
player busts and loses in 3 moves
Game #: 2784
player wins in 1 moves
Game #: 2785
dealer busts and player wins in 1 moves
Game #: 2786
player loses in 1 moves
Game #: 2787
player loses in 1 moves
Game #: 2788
dealer busts and player wins in 1 moves
Game #: 2789
player loses in 1 moves
Game #: 2790
player loses in 1 moves
Game #: 2791
player busts and loses in 1 moves
Game #: 2792
player loses in 1 moves
Game #: 2793
player loses in 2 moves
Game #: 2794
player loses in 1 moves
Game #: 2795
player loses in 1 moves
Game #: 2796
dealer busts and player wins in 1 moves
Game #: 2797
player busts and loses in 1 moves
Game #: 2798
player busts and loses in 2 moves
Game #: 2799
player busts and loses in 1 moves
Game #: 2800
player loses in 1 moves
Game #: 2801
player wins in 1 moves
Game #: 2802
player wins in 0 moves
Game #: 2803
player loses in 1 moves
Game #: 2804
player loses in 2 moves
Game #: 2805
player loses in 1 moves
Game #: 2806
player busts and loses in 2 moves
Game #: 2807
player loses in 1 moves
Game #: 2808
player busts and loses in 1 moves
Game #: 2809
dealer busts and player wins in 2 moves
Game #: 2810
player loses in 1 moves
Game #: 2811
player busts and loses in 1 moves
Game #: 2812
player wins in 0 moves
Game #: 2813
dealer busts and player wins in 1 moves
Game #: 2814
dealer busts and player wins in 1 moves
Game #: 2815
player busts and loses in 1 moves
Game #: 2816
player wins in 0 moves
Game #: 2817
player busts and loses in 1 moves
Game #: 2818
dealer busts and player wins in 2 moves
Game #: 2819
dealer busts and player wins in 1 moves
Game #: 2820
player wins in 1 moves
Game #: 2821
player wins in 0 moves
Game #: 2822
player wins in 1 moves
Game #: 2823
player busts and loses in 1 moves
Game #: 2824
player busts and loses in 1 moves
Game #: 2825
player wins in 3 moves
Game #: 2826
player busts and loses in 1 moves
Game #: 2827
player loses in 1 moves
Game #: 2828
draw in 1 moves
Game #: 2829
player loses in 1 moves
Game #: 2830
dealer busts and player wins in 2 moves
Game #: 2831
dealer busts and player wins in 1 moves
Game #: 2832
player wins in 0 moves
Game #: 2833
draw in 1 moves
Game #: 2834
player wins in 1 moves
Game #: 2835
player wins in 0 moves
Game #: 2836
draw in 1 moves
Game #: 2837
player busts and loses in 1 moves
Game #: 2838
player busts and loses in 1 moves
Game #: 2839
player loses in 1 moves
Game #: 2840
player wins in 2 moves
Game #: 2841
player loses in 1 moves
Game #: 2842
player wins in 1 moves
Game #: 2843
player wins in 1 moves
Game #: 2844
player busts and loses in 1 moves
Game #: 2845
player loses in 3 moves
Game #: 2846
player busts and loses in 1 moves
Game #: 2847
player wins in 2 moves
Game #: 2848
dealer busts and player wins in 2 moves
Game #: 2849
player loses in 1 moves
Game #: 2850
dealer busts and player wins in 2 moves
Game #: 2851
player loses in 1 moves
Game #: 2852
player wins in 1 moves
Game #: 2853
dealer busts and player wins in 1 moves
Game #: 2854
player busts and loses in 2 moves
Game #: 2855
dealer busts and player wins in 1 moves
Game #: 2856
player busts and loses in 1 moves
Game #: 2857
dealer busts and player wins in 1 moves
Game #: 2858
player loses in 1 moves
Game #: 2859
dealer busts and player wins in 1 moves
Game #: 2860
draw in 2 moves
Game #: 2861
dealer busts and player wins in 2 moves
Game #: 2862
dealer busts and player wins in 1 moves
Game #: 2863
player busts and loses in 1 moves
Game #: 2864
dealer busts and player wins in 1 moves
Game #: 2865
player busts and loses in 1 moves
Game #: 2866
player loses in 1 moves
Game #: 2867
dealer busts and player wins in 1 moves
Game #: 2868
player busts and loses in 1 moves
Game #: 2869
player busts and loses in 1 moves
Game #: 2870
player wins in 0 moves
Game #: 2871
player wins in 2 moves
Game #: 2872
draw in 1 moves
Game #: 2873
player wins in 1 moves
Game #: 2874
dealer busts and player wins in 2 moves
Game #: 2875
player wins in 1 moves
Game #: 2876
player loses in 2 moves
Game #: 2877
player loses in 1 moves
Game #: 2878
player wins in 0 moves
Game #: 2879
player loses in 1 moves
Game #: 2880
player loses in 1 moves
Game #: 2881
dealer busts and player wins in 1 moves
Game #: 2882
player busts and loses in 1 moves
Game #: 2883
dealer busts and player wins in 1 moves
Game #: 2884
player loses in 1 moves
Game #: 2885
player busts and loses in 1 moves
Game #: 2886
draw in 2 moves
Game #: 2887
player loses in 1 moves
Game #: 2888
dealer busts and player wins in 1 moves
Game #: 2889
player busts and loses in 1 moves
Game #: 2890
player wins in 1 moves
Game #: 2891
player busts and loses in 1 moves
Game #: 2892
draw in 1 moves
Game #: 2893
player loses in 1 moves
Game #: 2894
player busts and loses in 1 moves
Game #: 2895
player busts and loses in 1 moves
Game #: 2896
player busts and loses in 1 moves
Game #: 2897
player loses in 2 moves
Game #: 2898
player loses in 1 moves
Game #: 2899
player loses in 1 moves
Game #: 2900
player wins in 1 moves
Game #: 2901
dealer busts and player wins in 2 moves
Game #: 2902
player loses in 1 moves
Game #: 2903
player wins in 0 moves
Game #: 2904
player loses in 2 moves
Game #: 2905
player loses in 3 moves
Game #: 2906
player loses in 1 moves
Game #: 2907
player busts and loses in 1 moves
Game #: 2908
player busts and loses in 1 moves
Game #: 2909
dealer busts and player wins in 1 moves
Game #: 2910
dealer busts and player wins in 3 moves
Game #: 2911
player loses in 1 moves
Game #: 2912
player busts and loses in 2 moves
Game #: 2913
player loses in 1 moves
Game #: 2914
player wins in 0 moves
Game #: 2915
player busts and loses in 1 moves
Game #: 2916
dealer busts and player wins in 1 moves
Game #: 2917
player loses in 2 moves
Game #: 2918
draw in 1 moves
Game #: 2919
player busts and loses in 1 moves
Game #: 2920
player wins in 1 moves
Game #: 2921
player wins in 0 moves
Game #: 2922
player busts and loses in 1 moves
Game #: 2923
dealer busts and player wins in 1 moves
Game #: 2924
player wins in 1 moves
Game #: 2925
player loses in 1 moves
Game #: 2926
player loses in 1 moves
Game #: 2927
player busts and loses in 2 moves
Game #: 2928
player busts and loses in 1 moves
Game #: 2929
draw in 1 moves
Game #: 2930
player busts and loses in 1 moves
Game #: 2931
player busts and loses in 1 moves
Game #: 2932
player wins in 1 moves
Game #: 2933
player wins in 1 moves
Game #: 2934
player busts and loses in 1 moves
Game #: 2935
player loses in 1 moves
Game #: 2936
player loses in 1 moves
Game #: 2937
player wins in 2 moves
Game #: 2938
player loses in 1 moves
Game #: 2939
player wins in 1 moves
Game #: 2940
player wins in 0 moves
Game #: 2941
player busts and loses in 1 moves
Game #: 2942
player wins in 0 moves
Game #: 2943
player wins in 1 moves
Game #: 2944
player busts and loses in 1 moves
Game #: 2945
player wins in 0 moves
Game #: 2946
player wins in 1 moves
Game #: 2947
draw in 2 moves
Game #: 2948
player loses in 1 moves
Game #: 2949
player wins in 1 moves
Game #: 2950
player busts and loses in 2 moves
Game #: 2951
player loses in 2 moves
Game #: 2952
player busts and loses in 2 moves
Game #: 2953
player loses in 2 moves
Game #: 2954
player loses in 1 moves
Game #: 2955
player loses in 1 moves
Game #: 2956
player loses in 1 moves
Game #: 2957
player busts and loses in 1 moves
Game #: 2958
player loses in 1 moves
Game #: 2959
player wins in 1 moves
Game #: 2960
draw in 1 moves
Game #: 2961
player busts and loses in 1 moves
Game #: 2962
player wins in 1 moves
Game #: 2963
player wins in 1 moves
Game #: 2964
dealer busts and player wins in 2 moves
Game #: 2965
player wins in 0 moves
Game #: 2966
player wins in 1 moves
Game #: 2967
player loses in 1 moves
Game #: 2968
player loses in 1 moves
Game #: 2969
dealer busts and player wins in 1 moves
Game #: 2970
dealer busts and player wins in 1 moves
Game #: 2971
player loses in 1 moves
Game #: 2972
player loses in 2 moves
Game #: 2973
player busts and loses in 1 moves
Game #: 2974
player busts and loses in 1 moves
Game #: 2975
dealer busts and player wins in 1 moves
Game #: 2976
player loses in 1 moves
Game #: 2977
player loses in 1 moves
Game #: 2978
player busts and loses in 1 moves
Game #: 2979
dealer busts and player wins in 1 moves
Game #: 2980
player loses in 1 moves
Game #: 2981
dealer busts and player wins in 1 moves
Game #: 2982
player loses in 1 moves
Game #: 2983
player busts and loses in 1 moves
Game #: 2984
draw in 1 moves
Game #: 2985
player busts and loses in 1 moves
Game #: 2986
dealer busts and player wins in 1 moves
Game #: 2987
player busts and loses in 2 moves
Game #: 2988
player loses in 1 moves
Game #: 2989
player loses in 1 moves
Game #: 2990
draw in 1 moves
Game #: 2991
player wins in 1 moves
Game #: 2992
player wins in 3 moves
Game #: 2993
player wins in 1 moves
Game #: 2994
player loses in 1 moves
Game #: 2995
player loses in 1 moves
Game #: 2996
dealer busts and player wins in 1 moves
Game #: 2997
dealer busts and player wins in 1 moves
Game #: 2998
player loses in 1 moves
Game #: 2999
dealer busts and player wins in 1 moves
Game #: 3000
player busts and loses in 2 moves
Game #: 3001
player busts and loses in 2 moves
Game #: 3002
player busts and loses in 1 moves
Game #: 3003
player loses in 1 moves
Game #: 3004
player busts and loses in 2 moves
Game #: 3005
player loses in 1 moves
Game #: 3006
player loses in 1 moves
Game #: 3007
player wins in 1 moves
Game #: 3008
player wins in 0 moves
Game #: 3009
dealer busts and player wins in 1 moves
Game #: 3010
player wins in 3 moves
Game #: 3011
player wins in 1 moves
Game #: 3012
player loses in 3 moves
Game #: 3013
draw in 1 moves
Game #: 3014
dealer busts and player wins in 1 moves
Game #: 3015
player wins in 1 moves
Game #: 3016
dealer busts and player wins in 1 moves
Game #: 3017
player wins in 0 moves
Game #: 3018
player busts and loses in 1 moves
Game #: 3019
player loses in 1 moves
Game #: 3020
player busts and loses in 3 moves
Game #: 3021
dealer busts and player wins in 2 moves
Game #: 3022
dealer busts and player wins in 1 moves
Game #: 3023
player loses in 1 moves
Game #: 3024
player loses in 1 moves
Game #: 3025
dealer busts and player wins in 2 moves
Game #: 3026
dealer busts and player wins in 1 moves
Game #: 3027
player wins in 1 moves
Game #: 3028
player wins in 0 moves
Game #: 3029
player loses in 1 moves
Game #: 3030
player busts and loses in 2 moves
Game #: 3031
player busts and loses in 1 moves
Game #: 3032
dealer busts and player wins in 1 moves
Game #: 3033
player loses in 1 moves
Game #: 3034
player wins in 1 moves
Game #: 3035
player wins in 1 moves
Game #: 3036
player loses in 1 moves
Game #: 3037
player busts and loses in 1 moves
Game #: 3038
player loses in 1 moves
Game #: 3039
player loses in 1 moves
Game #: 3040
player busts and loses in 1 moves
Game #: 3041
player loses in 1 moves
Game #: 3042
player loses in 1 moves
Game #: 3043
player loses in 1 moves
Game #: 3044
player loses in 1 moves
Game #: 3045
dealer busts and player wins in 1 moves
Game #: 3046
player busts and loses in 1 moves
Game #: 3047
player wins in 0 moves
Game #: 3048
player busts and loses in 1 moves
Game #: 3049
dealer busts and player wins in 1 moves
Game #: 3050
player wins in 2 moves
Game #: 3051
player wins in 1 moves
Game #: 3052
dealer busts and player wins in 2 moves
Game #: 3053
player wins in 0 moves
Game #: 3054
player busts and loses in 1 moves
Game #: 3055
player loses in 1 moves
Game #: 3056
draw in 1 moves
Game #: 3057
player loses in 2 moves
Game #: 3058
player busts and loses in 2 moves
Game #: 3059
dealer busts and player wins in 1 moves
Game #: 3060
player loses in 1 moves
Game #: 3061
player busts and loses in 1 moves
Game #: 3062
dealer busts and player wins in 1 moves
Game #: 3063
player loses in 1 moves
Game #: 3064
player loses in 1 moves
Game #: 3065
player wins in 0 moves
Game #: 3066
player loses in 1 moves
Game #: 3067
player busts and loses in 1 moves
Game #: 3068
player loses in 1 moves
Game #: 3069
player loses in 1 moves
Game #: 3070
dealer busts and player wins in 2 moves
Game #: 3071
draw in 2 moves
Game #: 3072
player loses in 1 moves
Game #: 3073
draw in 1 moves
Game #: 3074
player loses in 1 moves
Game #: 3075
player wins in 0 moves
Game #: 3076
player wins in 2 moves
Game #: 3077
draw in 1 moves
Game #: 3078
player loses in 1 moves
Game #: 3079
dealer busts and player wins in 1 moves
Game #: 3080
dealer busts and player wins in 1 moves
Game #: 3081
player loses in 1 moves
Game #: 3082
dealer busts and player wins in 1 moves
Game #: 3083
player loses in 1 moves
Game #: 3084
dealer busts and player wins in 1 moves
Game #: 3085
dealer busts and player wins in 1 moves
Game #: 3086
player wins in 2 moves
Game #: 3087
player loses in 1 moves
Game #: 3088
player busts and loses in 1 moves
Game #: 3089
dealer busts and player wins in 2 moves
Game #: 3090
player busts and loses in 1 moves
Game #: 3091
player busts and loses in 1 moves
Game #: 3092
player loses in 1 moves
Game #: 3093
player wins in 1 moves
Game #: 3094
player wins in 0 moves
Game #: 3095
dealer busts and player wins in 1 moves
Game #: 3096
player busts and loses in 1 moves
Game #: 3097
player loses in 1 moves
Game #: 3098
dealer busts and player wins in 2 moves
Game #: 3099
player loses in 1 moves
Game #: 3100
player busts and loses in 1 moves
Game #: 3101
player busts and loses in 1 moves
Game #: 3102
player wins in 3 moves
Game #: 3103
dealer busts and player wins in 1 moves
Game #: 3104
dealer busts and player wins in 1 moves
Game #: 3105
player wins in 1 moves
Game #: 3106
player wins in 1 moves
Game #: 3107
dealer busts and player wins in 1 moves
Game #: 3108
player loses in 1 moves
Game #: 3109
player loses in 1 moves
Game #: 3110
player loses in 1 moves
Game #: 3111
player busts and loses in 1 moves
Game #: 3112
player loses in 1 moves
Game #: 3113
player wins in 2 moves
Game #: 3114
dealer busts and player wins in 1 moves
Game #: 3115
player loses in 1 moves
Game #: 3116
player loses in 1 moves
Game #: 3117
player loses in 1 moves
Game #: 3118
player busts and loses in 2 moves
Game #: 3119
player loses in 1 moves
Game #: 3120
player loses in 1 moves
Game #: 3121
player busts and loses in 1 moves
Game #: 3122
player busts and loses in 3 moves
Game #: 3123
player loses in 1 moves
Game #: 3124
player busts and loses in 2 moves
Game #: 3125
player loses in 1 moves
Game #: 3126
player busts and loses in 1 moves
Game #: 3127
dealer busts and player wins in 1 moves
Game #: 3128
player busts and loses in 2 moves
Game #: 3129
player busts and loses in 1 moves
Game #: 3130
player loses in 1 moves
Game #: 3131
player busts and loses in 1 moves
Game #: 3132
player loses in 1 moves
Game #: 3133
player loses in 1 moves
Game #: 3134
player busts and loses in 1 moves
Game #: 3135
player busts and loses in 1 moves
Game #: 3136
dealer busts and player wins in 1 moves
Game #: 3137
player loses in 1 moves
Game #: 3138
draw in 2 moves
Game #: 3139
player loses in 2 moves
Game #: 3140
player busts and loses in 1 moves
Game #: 3141
dealer busts and player wins in 1 moves
Game #: 3142
player busts and loses in 1 moves
Game #: 3143
player loses in 2 moves
Game #: 3144
player loses in 1 moves
Game #: 3145
player loses in 1 moves
Game #: 3146
player busts and loses in 1 moves
Game #: 3147
dealer busts and player wins in 1 moves
Game #: 3148
player busts and loses in 4 moves
Game #: 3149
player loses in 1 moves
Game #: 3150
player loses in 1 moves
Game #: 3151
player busts and loses in 2 moves
Game #: 3152
player busts and loses in 1 moves
Game #: 3153
player wins in 0 moves
Game #: 3154
player loses in 1 moves
Game #: 3155
player loses in 2 moves
Game #: 3156
player loses in 1 moves
Game #: 3157
player busts and loses in 1 moves
Game #: 3158
player wins in 0 moves
Game #: 3159
player busts and loses in 1 moves
Game #: 3160
player busts and loses in 1 moves
Game #: 3161
dealer busts and player wins in 1 moves
Game #: 3162
player loses in 1 moves
Game #: 3163
player loses in 1 moves
Game #: 3164
player loses in 1 moves
Game #: 3165
dealer busts and player wins in 1 moves
Game #: 3166
player busts and loses in 1 moves
Game #: 3167
player loses in 1 moves
Game #: 3168
player wins in 0 moves
Game #: 3169
player wins in 1 moves
Game #: 3170
player wins in 0 moves
Game #: 3171
player loses in 1 moves
Game #: 3172
player wins in 0 moves
Game #: 3173
dealer busts and player wins in 1 moves
Game #: 3174
player wins in 1 moves
Game #: 3175
player loses in 1 moves
Game #: 3176
dealer busts and player wins in 2 moves
Game #: 3177
player wins in 1 moves
Game #: 3178
dealer busts and player wins in 1 moves
Game #: 3179
player busts and loses in 1 moves
Game #: 3180
player busts and loses in 1 moves
Game #: 3181
dealer busts and player wins in 1 moves
Game #: 3182
dealer busts and player wins in 2 moves
Game #: 3183
player loses in 1 moves
Game #: 3184
player loses in 1 moves
Game #: 3185
player wins in 1 moves
Game #: 3186
player loses in 1 moves
Game #: 3187
player wins in 0 moves
Game #: 3188
player loses in 1 moves
Game #: 3189
player wins in 1 moves
Game #: 3190
dealer busts and player wins in 1 moves
Game #: 3191
draw in 1 moves
Game #: 3192
player busts and loses in 1 moves
Game #: 3193
player wins in 0 moves
Game #: 3194
draw in 1 moves
Game #: 3195
player busts and loses in 1 moves
Game #: 3196
player loses in 1 moves
Game #: 3197
player loses in 1 moves
Game #: 3198
player loses in 1 moves
Game #: 3199
dealer busts and player wins in 1 moves
Game #: 3200
dealer busts and player wins in 1 moves
Game #: 3201
player busts and loses in 1 moves
Game #: 3202
draw in 1 moves
Game #: 3203
player wins in 0 moves
Game #: 3204
dealer busts and player wins in 1 moves
Game #: 3205
player wins in 0 moves
Game #: 3206
player loses in 1 moves
Game #: 3207
player loses in 1 moves
Game #: 3208
player loses in 1 moves
Game #: 3209
player wins in 1 moves
Game #: 3210
dealer busts and player wins in 1 moves
Game #: 3211
draw in 1 moves
Game #: 3212
player loses in 1 moves
Game #: 3213
player busts and loses in 1 moves
Game #: 3214
player wins in 1 moves
Game #: 3215
player loses in 2 moves
Game #: 3216
player wins in 1 moves
Game #: 3217
player loses in 2 moves
Game #: 3218
player busts and loses in 1 moves
Game #: 3219
player loses in 2 moves
Game #: 3220
player loses in 1 moves
Game #: 3221
player wins in 0 moves
Game #: 3222
player busts and loses in 1 moves
Game #: 3223
player busts and loses in 1 moves
Game #: 3224
player wins in 1 moves
Game #: 3225
player loses in 1 moves
Game #: 3226
player busts and loses in 1 moves
Game #: 3227
dealer busts and player wins in 1 moves
Game #: 3228
draw in 1 moves
Game #: 3229
player loses in 1 moves
Game #: 3230
player busts and loses in 1 moves
Game #: 3231
player loses in 1 moves
Game #: 3232
player loses in 1 moves
Game #: 3233
player loses in 1 moves
Game #: 3234
player loses in 1 moves
Game #: 3235
draw in 2 moves
Game #: 3236
player loses in 1 moves
Game #: 3237
player loses in 1 moves
Game #: 3238
player loses in 1 moves
Game #: 3239
player loses in 1 moves
Game #: 3240
player wins in 1 moves
Game #: 3241
player loses in 1 moves
Game #: 3242
player loses in 1 moves
Game #: 3243
player wins in 1 moves
Game #: 3244
draw in 1 moves
Game #: 3245
player loses in 1 moves
Game #: 3246
player loses in 1 moves
Game #: 3247
player loses in 1 moves
Game #: 3248
player loses in 1 moves
Game #: 3249
player loses in 1 moves
Game #: 3250
player wins in 2 moves
Game #: 3251
player loses in 1 moves
Game #: 3252
player busts and loses in 1 moves
Game #: 3253
player busts and loses in 1 moves
Game #: 3254
player loses in 1 moves
Game #: 3255
draw in 1 moves
Game #: 3256
player loses in 1 moves
Game #: 3257
draw in 2 moves
Game #: 3258
player busts and loses in 1 moves
Game #: 3259
player loses in 2 moves
Game #: 3260
player busts and loses in 1 moves
Game #: 3261
player busts and loses in 1 moves
Game #: 3262
player loses in 1 moves
Game #: 3263
dealer busts and player wins in 1 moves
Game #: 3264
player loses in 2 moves
Game #: 3265
player wins in 1 moves
Game #: 3266
player loses in 1 moves
Game #: 3267
player busts and loses in 1 moves
Game #: 3268
player wins in 1 moves
Game #: 3269
player wins in 0 moves
Game #: 3270
player loses in 1 moves
Game #: 3271
player wins in 0 moves
Game #: 3272
dealer busts and player wins in 1 moves
Game #: 3273
draw in 1 moves
Game #: 3274
player loses in 1 moves
Game #: 3275
player busts and loses in 1 moves
Game #: 3276
player loses in 2 moves
Game #: 3277
player busts and loses in 2 moves
Game #: 3278
dealer busts and player wins in 1 moves
Game #: 3279
player busts and loses in 1 moves
Game #: 3280
dealer busts and player wins in 1 moves
Game #: 3281
player wins in 0 moves
Game #: 3282
player busts and loses in 1 moves
Game #: 3283
player loses in 3 moves
Game #: 3284
player loses in 1 moves
Game #: 3285
player loses in 1 moves
Game #: 3286
player loses in 1 moves
Game #: 3287
player loses in 1 moves
Game #: 3288
player loses in 1 moves
Game #: 3289
dealer busts and player wins in 2 moves
Game #: 3290
dealer busts and player wins in 1 moves
Game #: 3291
draw in 1 moves
Game #: 3292
dealer busts and player wins in 1 moves
Game #: 3293
player busts and loses in 3 moves
Game #: 3294
player loses in 1 moves
Game #: 3295
player wins in 2 moves
Game #: 3296
player busts and loses in 1 moves
Game #: 3297
dealer busts and player wins in 3 moves
Game #: 3298
player loses in 1 moves
Game #: 3299
player loses in 1 moves
Game #: 3300
player loses in 2 moves
Game #: 3301
player busts and loses in 1 moves
Game #: 3302
player loses in 1 moves
Game #: 3303
player loses in 1 moves
Game #: 3304
dealer busts and player wins in 1 moves
Game #: 3305
dealer busts and player wins in 3 moves
Game #: 3306
player loses in 1 moves
Game #: 3307
player loses in 1 moves
Game #: 3308
player loses in 1 moves
Game #: 3309
player busts and loses in 1 moves
Game #: 3310
dealer busts and player wins in 1 moves
Game #: 3311
player busts and loses in 1 moves
Game #: 3312
player wins in 1 moves
Game #: 3313
player loses in 1 moves
Game #: 3314
player loses in 1 moves
Game #: 3315
player loses in 1 moves
Game #: 3316
player busts and loses in 1 moves
Game #: 3317
player loses in 1 moves
Game #: 3318
player loses in 2 moves
Game #: 3319
player busts and loses in 2 moves
Game #: 3320
player busts and loses in 1 moves
Game #: 3321
dealer busts and player wins in 1 moves
Game #: 3322
dealer busts and player wins in 1 moves
Game #: 3323
player wins in 0 moves
Game #: 3324
player loses in 1 moves
Game #: 3325
player loses in 1 moves
Game #: 3326
player wins in 4 moves
Game #: 3327
player loses in 1 moves
Game #: 3328
dealer busts and player wins in 1 moves
Game #: 3329
player wins in 2 moves
Game #: 3330
player wins in 0 moves
Game #: 3331
dealer busts and player wins in 1 moves
Game #: 3332
player busts and loses in 1 moves
Game #: 3333
player busts and loses in 1 moves
Game #: 3334
player wins in 1 moves
Game #: 3335
player wins in 1 moves
Game #: 3336
player wins in 1 moves
Game #: 3337
dealer busts and player wins in 1 moves
Game #: 3338
player busts and loses in 1 moves
Game #: 3339
player busts and loses in 1 moves
Game #: 3340
player loses in 1 moves
Game #: 3341
player loses in 1 moves
Game #: 3342
dealer busts and player wins in 2 moves
Game #: 3343
player busts and loses in 2 moves
Game #: 3344
player loses in 1 moves
Game #: 3345
player loses in 1 moves
Game #: 3346
player loses in 1 moves
Game #: 3347
dealer busts and player wins in 1 moves
Game #: 3348
player loses in 1 moves
Game #: 3349
player wins in 1 moves
Game #: 3350
player busts and loses in 1 moves
Game #: 3351
dealer busts and player wins in 1 moves
Game #: 3352
player loses in 1 moves
Game #: 3353
player loses in 1 moves
Game #: 3354
player busts and loses in 1 moves
Game #: 3355
player busts and loses in 1 moves
Game #: 3356
player wins in 1 moves
Game #: 3357
player busts and loses in 1 moves
Game #: 3358
player busts and loses in 1 moves
Game #: 3359
dealer busts and player wins in 1 moves
Game #: 3360
player loses in 1 moves
Game #: 3361
player loses in 1 moves
Game #: 3362
player wins in 1 moves
Game #: 3363
player busts and loses in 1 moves
Game #: 3364
draw in 2 moves
Game #: 3365
player loses in 2 moves
Game #: 3366
player busts and loses in 1 moves
Game #: 3367
player loses in 2 moves
Game #: 3368
player loses in 1 moves
Game #: 3369
player busts and loses in 1 moves
Game #: 3370
draw in 3 moves
Game #: 3371
player loses in 1 moves
Game #: 3372
dealer busts and player wins in 1 moves
Game #: 3373
dealer busts and player wins in 1 moves
Game #: 3374
player loses in 1 moves
Game #: 3375
player busts and loses in 1 moves
Game #: 3376
player busts and loses in 1 moves
Game #: 3377
draw in 1 moves
Game #: 3378
player loses in 1 moves
Game #: 3379
player busts and loses in 1 moves
Game #: 3380
player busts and loses in 1 moves
Game #: 3381
player loses in 1 moves
Game #: 3382
dealer busts and player wins in 1 moves
Game #: 3383
player wins in 1 moves
Game #: 3384
player busts and loses in 1 moves
Game #: 3385
player busts and loses in 1 moves
Game #: 3386
player loses in 1 moves
Game #: 3387
player loses in 1 moves
Game #: 3388
player loses in 1 moves
Game #: 3389
player busts and loses in 1 moves
Game #: 3390
player busts and loses in 1 moves
Game #: 3391
dealer busts and player wins in 1 moves
Game #: 3392
player loses in 2 moves
Game #: 3393
player wins in 1 moves
Game #: 3394
player loses in 1 moves
Game #: 3395
dealer busts and player wins in 1 moves
Game #: 3396
dealer busts and player wins in 1 moves
Game #: 3397
player loses in 1 moves
Game #: 3398
player loses in 1 moves
Game #: 3399
draw in 1 moves
Game #: 3400
player busts and loses in 1 moves
Game #: 3401
player loses in 1 moves
Game #: 3402
player wins in 1 moves
Game #: 3403
dealer busts and player wins in 1 moves
Game #: 3404
player busts and loses in 1 moves
Game #: 3405
player busts and loses in 1 moves
Game #: 3406
player loses in 1 moves
Game #: 3407
dealer busts and player wins in 1 moves
Game #: 3408
player busts and loses in 2 moves
Game #: 3409
player busts and loses in 2 moves
Game #: 3410
player loses in 1 moves
Game #: 3411
player loses in 1 moves
Game #: 3412
player busts and loses in 1 moves
Game #: 3413
player busts and loses in 1 moves
Game #: 3414
player busts and loses in 1 moves
Game #: 3415
player busts and loses in 1 moves
Game #: 3416
player loses in 1 moves
Game #: 3417
player busts and loses in 1 moves
Game #: 3418
draw in 1 moves
Game #: 3419
player loses in 1 moves
Game #: 3420
player busts and loses in 1 moves
Game #: 3421
player wins in 1 moves
Game #: 3422
player wins in 0 moves
Game #: 3423
player loses in 1 moves
Game #: 3424
dealer busts and player wins in 1 moves
Game #: 3425
player wins in 2 moves
Game #: 3426
dealer busts and player wins in 2 moves
Game #: 3427
player loses in 1 moves
Game #: 3428
player loses in 1 moves
Game #: 3429
dealer busts and player wins in 2 moves
Game #: 3430
player busts and loses in 1 moves
Game #: 3431
draw in 1 moves
Game #: 3432
dealer busts and player wins in 1 moves
Game #: 3433
player loses in 1 moves
Game #: 3434
draw in 2 moves
Game #: 3435
player busts and loses in 1 moves
Game #: 3436
player loses in 4 moves
Game #: 3437
player loses in 1 moves
Game #: 3438
player loses in 1 moves
Game #: 3439
draw in 1 moves
Game #: 3440
player loses in 1 moves
Game #: 3441
player busts and loses in 1 moves
Game #: 3442
dealer busts and player wins in 1 moves
Game #: 3443
draw in 1 moves
Game #: 3444
player loses in 1 moves
Game #: 3445
player loses in 1 moves
Game #: 3446
player busts and loses in 1 moves
Game #: 3447
player busts and loses in 2 moves
Game #: 3448
draw in 1 moves
Game #: 3449
player loses in 1 moves
Game #: 3450
player busts and loses in 1 moves
Game #: 3451
player loses in 2 moves
Game #: 3452
player busts and loses in 1 moves
Game #: 3453
player loses in 1 moves
Game #: 3454
player wins in 1 moves
Game #: 3455
player loses in 1 moves
Game #: 3456
player loses in 1 moves
Game #: 3457
player loses in 1 moves
Game #: 3458
dealer busts and player wins in 1 moves
Game #: 3459
player wins in 0 moves
Game #: 3460
player busts and loses in 2 moves
Game #: 3461
player loses in 1 moves
Game #: 3462
dealer busts and player wins in 1 moves
Game #: 3463
dealer busts and player wins in 1 moves
Game #: 3464
dealer busts and player wins in 1 moves
Game #: 3465
dealer busts and player wins in 1 moves
Game #: 3466
player wins in 1 moves
Game #: 3467
player loses in 1 moves
Game #: 3468
player wins in 1 moves
Game #: 3469
player busts and loses in 1 moves
Game #: 3470
player loses in 1 moves
Game #: 3471
dealer busts and player wins in 1 moves
Game #: 3472
player busts and loses in 1 moves
Game #: 3473
player loses in 1 moves
Game #: 3474
player busts and loses in 1 moves
Game #: 3475
player busts and loses in 1 moves
Game #: 3476
player loses in 1 moves
Game #: 3477
player wins in 1 moves
Game #: 3478
player wins in 1 moves
Game #: 3479
player loses in 1 moves
Game #: 3480
player loses in 1 moves
Game #: 3481
player wins in 0 moves
Game #: 3482
player wins in 1 moves
Game #: 3483
draw in 1 moves
Game #: 3484
dealer busts and player wins in 1 moves
Game #: 3485
dealer busts and player wins in 1 moves
Game #: 3486
player wins in 0 moves
Game #: 3487
player loses in 1 moves
Game #: 3488
player wins in 1 moves
Game #: 3489
player loses in 1 moves
Game #: 3490
player loses in 1 moves
Game #: 3491
player wins in 1 moves
Game #: 3492
dealer busts and player wins in 1 moves
Game #: 3493
player wins in 1 moves
Game #: 3494
player loses in 1 moves
Game #: 3495
player loses in 1 moves
Game #: 3496
player busts and loses in 1 moves
Game #: 3497
player loses in 1 moves
Game #: 3498
player busts and loses in 1 moves
Game #: 3499
dealer busts and player wins in 1 moves
Game #: 3500
player loses in 1 moves
Game #: 3501
player busts and loses in 1 moves
Game #: 3502
player loses in 1 moves
Game #: 3503
player busts and loses in 1 moves
Game #: 3504
dealer busts and player wins in 1 moves
Game #: 3505
player wins in 1 moves
Game #: 3506
dealer busts and player wins in 1 moves
Game #: 3507
player loses in 1 moves
Game #: 3508
player busts and loses in 1 moves
Game #: 3509
player busts and loses in 1 moves
Game #: 3510
player loses in 1 moves
Game #: 3511
player wins in 1 moves
Game #: 3512
dealer busts and player wins in 1 moves
Game #: 3513
player loses in 1 moves
Game #: 3514
dealer busts and player wins in 1 moves
Game #: 3515
player busts and loses in 3 moves
Game #: 3516
player loses in 1 moves
Game #: 3517
player busts and loses in 1 moves
Game #: 3518
draw in 2 moves
Game #: 3519
dealer busts and player wins in 1 moves
Game #: 3520
player loses in 1 moves
Game #: 3521
player loses in 1 moves
Game #: 3522
draw in 2 moves
Game #: 3523
player busts and loses in 2 moves
Game #: 3524
draw in 1 moves
Game #: 3525
player wins in 0 moves
Game #: 3526
player loses in 2 moves
Game #: 3527
player busts and loses in 1 moves
Game #: 3528
player loses in 1 moves
Game #: 3529
dealer busts and player wins in 2 moves
Game #: 3530
player busts and loses in 1 moves
Game #: 3531
player loses in 1 moves
Game #: 3532
player wins in 0 moves
Game #: 3533
player loses in 1 moves
Game #: 3534
dealer busts and player wins in 1 moves
Game #: 3535
player loses in 1 moves
Game #: 3536
player loses in 1 moves
Game #: 3537
dealer busts and player wins in 2 moves
Game #: 3538
dealer busts and player wins in 1 moves
Game #: 3539
dealer busts and player wins in 1 moves
Game #: 3540
player busts and loses in 2 moves
Game #: 3541
draw in 1 moves
Game #: 3542
dealer busts and player wins in 1 moves
Game #: 3543
dealer busts and player wins in 2 moves
Game #: 3544
dealer busts and player wins in 2 moves
Game #: 3545
player busts and loses in 1 moves
Game #: 3546
player wins in 1 moves
Game #: 3547
player busts and loses in 1 moves
Game #: 3548
player busts and loses in 1 moves
Game #: 3549
player busts and loses in 1 moves
Game #: 3550
player wins in 1 moves
Game #: 3551
player loses in 1 moves
Game #: 3552
player busts and loses in 1 moves
Game #: 3553
player busts and loses in 1 moves
Game #: 3554
player wins in 1 moves
Game #: 3555
player loses in 1 moves
Game #: 3556
dealer busts and player wins in 1 moves
Game #: 3557
dealer busts and player wins in 2 moves
Game #: 3558
player wins in 0 moves
Game #: 3559
player busts and loses in 2 moves
Game #: 3560
player loses in 1 moves
Game #: 3561
dealer busts and player wins in 1 moves
Game #: 3562
player busts and loses in 1 moves
Game #: 3563
player wins in 0 moves
Game #: 3564
player loses in 1 moves
Game #: 3565
dealer busts and player wins in 1 moves
Game #: 3566
player wins in 1 moves
Game #: 3567
player loses in 1 moves
Game #: 3568
dealer busts and player wins in 1 moves
Game #: 3569
player wins in 1 moves
Game #: 3570
dealer busts and player wins in 1 moves
Game #: 3571
draw in 2 moves
Game #: 3572
dealer busts and player wins in 1 moves
Game #: 3573
dealer busts and player wins in 1 moves
Game #: 3574
player loses in 3 moves
Game #: 3575
player busts and loses in 1 moves
Game #: 3576
player busts and loses in 1 moves
Game #: 3577
dealer busts and player wins in 1 moves
Game #: 3578
player loses in 1 moves
Game #: 3579
player wins in 2 moves
Game #: 3580
player loses in 1 moves
Game #: 3581
player loses in 1 moves
Game #: 3582
player loses in 1 moves
Game #: 3583
dealer busts and player wins in 1 moves
Game #: 3584
player loses in 1 moves
Game #: 3585
dealer busts and player wins in 1 moves
Game #: 3586
dealer busts and player wins in 1 moves
Game #: 3587
dealer busts and player wins in 1 moves
Game #: 3588
player wins in 0 moves
Game #: 3589
player busts and loses in 1 moves
Game #: 3590
player wins in 0 moves
Game #: 3591
player busts and loses in 1 moves
Game #: 3592
player busts and loses in 1 moves
Game #: 3593
player loses in 1 moves
Game #: 3594
player loses in 1 moves
Game #: 3595
player loses in 1 moves
Game #: 3596
player wins in 0 moves
Game #: 3597
player loses in 1 moves
Game #: 3598
draw in 1 moves
Game #: 3599
player loses in 1 moves
Game #: 3600
player busts and loses in 1 moves
Game #: 3601
player loses in 1 moves
Game #: 3602
player loses in 1 moves
Game #: 3603
player loses in 1 moves
Game #: 3604
player busts and loses in 1 moves
Game #: 3605
player busts and loses in 1 moves
Game #: 3606
player loses in 1 moves
Game #: 3607
dealer busts and player wins in 2 moves
Game #: 3608
player loses in 2 moves
Game #: 3609
player loses in 1 moves
Game #: 3610
player wins in 1 moves
Game #: 3611
draw in 1 moves
Game #: 3612
player loses in 1 moves
Game #: 3613
player loses in 1 moves
Game #: 3614
dealer busts and player wins in 1 moves
Game #: 3615
player wins in 0 moves
Game #: 3616
draw in 1 moves
Game #: 3617
draw in 1 moves
Game #: 3618
player wins in 1 moves
Game #: 3619
player busts and loses in 1 moves
Game #: 3620
dealer busts and player wins in 1 moves
Game #: 3621
player busts and loses in 1 moves
Game #: 3622
player wins in 2 moves
Game #: 3623
player loses in 1 moves
Game #: 3624
player loses in 1 moves
Game #: 3625
player busts and loses in 1 moves
Game #: 3626
player wins in 0 moves
Game #: 3627
dealer busts and player wins in 1 moves
Game #: 3628
dealer busts and player wins in 1 moves
Game #: 3629
player busts and loses in 1 moves
Game #: 3630
player busts and loses in 1 moves
Game #: 3631
dealer busts and player wins in 1 moves
Game #: 3632
player wins in 0 moves
Game #: 3633
player busts and loses in 2 moves
Game #: 3634
draw in 2 moves
Game #: 3635
player wins in 0 moves
Game #: 3636
player wins in 2 moves
Game #: 3637
player busts and loses in 1 moves
Game #: 3638
dealer busts and player wins in 2 moves
Game #: 3639
dealer busts and player wins in 1 moves
Game #: 3640
player wins in 0 moves
Game #: 3641
player loses in 1 moves
Game #: 3642
dealer busts and player wins in 1 moves
Game #: 3643
player busts and loses in 2 moves
Game #: 3644
player busts and loses in 1 moves
Game #: 3645
player busts and loses in 1 moves
Game #: 3646
player loses in 1 moves
Game #: 3647
player busts and loses in 1 moves
Game #: 3648
player loses in 1 moves
Game #: 3649
dealer busts and player wins in 2 moves
Game #: 3650
dealer busts and player wins in 1 moves
Game #: 3651
player loses in 1 moves
Game #: 3652
player busts and loses in 1 moves
Game #: 3653
player busts and loses in 1 moves
Game #: 3654
player wins in 0 moves
Game #: 3655
player loses in 1 moves
Game #: 3656
dealer busts and player wins in 1 moves
Game #: 3657
dealer busts and player wins in 1 moves
Game #: 3658
player busts and loses in 2 moves
Game #: 3659
dealer busts and player wins in 1 moves
Game #: 3660
player loses in 1 moves
Game #: 3661
player loses in 1 moves
Game #: 3662
player wins in 0 moves
Game #: 3663
player busts and loses in 1 moves
Game #: 3664
player busts and loses in 1 moves
Game #: 3665
player wins in 0 moves
Game #: 3666
player wins in 2 moves
Game #: 3667
player busts and loses in 1 moves
Game #: 3668
player busts and loses in 3 moves
Game #: 3669
dealer busts and player wins in 2 moves
Game #: 3670
player busts and loses in 1 moves
Game #: 3671
player busts and loses in 1 moves
Game #: 3672
player busts and loses in 1 moves
Game #: 3673
player loses in 1 moves
Game #: 3674
player loses in 1 moves
Game #: 3675
dealer busts and player wins in 1 moves
Game #: 3676
player wins in 1 moves
Game #: 3677
player wins in 1 moves
Game #: 3678
dealer busts and player wins in 1 moves
Game #: 3679
player busts and loses in 1 moves
Game #: 3680
dealer busts and player wins in 2 moves
Game #: 3681
player busts and loses in 1 moves
Game #: 3682
player loses in 3 moves
Game #: 3683
player busts and loses in 2 moves
Game #: 3684
player busts and loses in 1 moves
Game #: 3685
player loses in 1 moves
Game #: 3686
draw in 1 moves
Game #: 3687
player wins in 0 moves
Game #: 3688
player loses in 1 moves
Game #: 3689
player wins in 0 moves
Game #: 3690
dealer busts and player wins in 1 moves
Game #: 3691
player busts and loses in 1 moves
Game #: 3692
player busts and loses in 1 moves
Game #: 3693
player wins in 1 moves
Game #: 3694
player loses in 1 moves
Game #: 3695
player loses in 1 moves
Game #: 3696
player loses in 1 moves
Game #: 3697
player loses in 1 moves
Game #: 3698
player wins in 0 moves
Game #: 3699
player busts and loses in 1 moves
Game #: 3700
player busts and loses in 1 moves
Game #: 3701
player wins in 0 moves
Game #: 3702
player loses in 1 moves
Game #: 3703
player wins in 0 moves
Game #: 3704
player busts and loses in 3 moves
Game #: 3705
player loses in 1 moves
Game #: 3706
dealer busts and player wins in 1 moves
Game #: 3707
player wins in 1 moves
Game #: 3708
player wins in 1 moves
Game #: 3709
player busts and loses in 1 moves
Game #: 3710
dealer busts and player wins in 1 moves
Game #: 3711
player wins in 1 moves
Game #: 3712
dealer busts and player wins in 1 moves
Game #: 3713
dealer busts and player wins in 1 moves
Game #: 3714
player wins in 1 moves
Game #: 3715
dealer busts and player wins in 1 moves
Game #: 3716
player loses in 1 moves
Game #: 3717
player wins in 1 moves
Game #: 3718
player wins in 0 moves
Game #: 3719
player loses in 1 moves
Game #: 3720
player busts and loses in 2 moves
Game #: 3721
player wins in 2 moves
Game #: 3722
dealer busts and player wins in 1 moves
Game #: 3723
player loses in 2 moves
Game #: 3724
player wins in 1 moves
Game #: 3725
dealer busts and player wins in 2 moves
Game #: 3726
dealer busts and player wins in 1 moves
Game #: 3727
dealer busts and player wins in 2 moves
Game #: 3728
player busts and loses in 1 moves
Game #: 3729
player wins in 1 moves
Game #: 3730
player busts and loses in 1 moves
Game #: 3731
draw in 1 moves
Game #: 3732
player loses in 2 moves
Game #: 3733
player loses in 1 moves
Game #: 3734
player loses in 1 moves
Game #: 3735
player loses in 1 moves
Game #: 3736
player loses in 1 moves
Game #: 3737
player loses in 1 moves
Game #: 3738
player wins in 2 moves
Game #: 3739
player busts and loses in 1 moves
Game #: 3740
player loses in 1 moves
Game #: 3741
draw in 1 moves
Game #: 3742
player loses in 1 moves
Game #: 3743
player loses in 1 moves
Game #: 3744
player busts and loses in 1 moves
Game #: 3745
player wins in 1 moves
Game #: 3746
player busts and loses in 1 moves
Game #: 3747
player loses in 1 moves
Game #: 3748
dealer busts and player wins in 1 moves
Game #: 3749
player loses in 2 moves
Game #: 3750
player busts and loses in 1 moves
Game #: 3751
dealer busts and player wins in 1 moves
Game #: 3752
player loses in 1 moves
Game #: 3753
player loses in 1 moves
Game #: 3754
player loses in 1 moves
Game #: 3755
dealer busts and player wins in 2 moves
Game #: 3756
dealer busts and player wins in 1 moves
Game #: 3757
player busts and loses in 1 moves
Game #: 3758
dealer busts and player wins in 1 moves
Game #: 3759
player wins in 0 moves
Game #: 3760
dealer busts and player wins in 1 moves
Game #: 3761
player busts and loses in 1 moves
Game #: 3762
player busts and loses in 1 moves
Game #: 3763
player busts and loses in 2 moves
Game #: 3764
draw in 1 moves
Game #: 3765
player loses in 1 moves
Game #: 3766
player loses in 2 moves
Game #: 3767
player wins in 2 moves
Game #: 3768
player loses in 1 moves
Game #: 3769
dealer busts and player wins in 1 moves
Game #: 3770
player loses in 2 moves
Game #: 3771
player loses in 1 moves
Game #: 3772
player busts and loses in 1 moves
Game #: 3773
dealer busts and player wins in 1 moves
Game #: 3774
player busts and loses in 1 moves
Game #: 3775
player busts and loses in 3 moves
Game #: 3776
player wins in 0 moves
Game #: 3777
player loses in 1 moves
Game #: 3778
player wins in 0 moves
Game #: 3779
player wins in 0 moves
Game #: 3780
player wins in 0 moves
Game #: 3781
player busts and loses in 1 moves
Game #: 3782
player loses in 1 moves
Game #: 3783
player busts and loses in 1 moves
Game #: 3784
player wins in 0 moves
Game #: 3785
dealer busts and player wins in 2 moves
Game #: 3786
player wins in 2 moves
Game #: 3787
dealer busts and player wins in 1 moves
Game #: 3788
player loses in 1 moves
Game #: 3789
player loses in 1 moves
Game #: 3790
player wins in 0 moves
Game #: 3791
player busts and loses in 1 moves
Game #: 3792
player wins in 0 moves
Game #: 3793
dealer busts and player wins in 1 moves
Game #: 3794
player loses in 1 moves
Game #: 3795
player busts and loses in 1 moves
Game #: 3796
dealer busts and player wins in 1 moves
Game #: 3797
player loses in 2 moves
Game #: 3798
player loses in 1 moves
Game #: 3799
player busts and loses in 1 moves
Game #: 3800
dealer busts and player wins in 1 moves
Game #: 3801
draw in 1 moves
Game #: 3802
player loses in 1 moves
Game #: 3803
player loses in 1 moves
Game #: 3804
player busts and loses in 1 moves
Game #: 3805
player loses in 1 moves
Game #: 3806
player loses in 1 moves
Game #: 3807
player loses in 1 moves
Game #: 3808
player loses in 1 moves
Game #: 3809
dealer busts and player wins in 1 moves
Game #: 3810
player wins in 1 moves
Game #: 3811
player busts and loses in 1 moves
Game #: 3812
player busts and loses in 2 moves
Game #: 3813
player loses in 1 moves
Game #: 3814
player wins in 0 moves
Game #: 3815
dealer busts and player wins in 1 moves
Game #: 3816
draw in 1 moves
Game #: 3817
player loses in 1 moves
Game #: 3818
player wins in 0 moves
Game #: 3819
player busts and loses in 1 moves
Game #: 3820
player loses in 1 moves
Game #: 3821
player busts and loses in 1 moves
Game #: 3822
player wins in 0 moves
Game #: 3823
player loses in 1 moves
Game #: 3824
player loses in 1 moves
Game #: 3825
player busts and loses in 1 moves
Game #: 3826
draw in 1 moves
Game #: 3827
player busts and loses in 1 moves
Game #: 3828
player loses in 1 moves
Game #: 3829
player loses in 1 moves
Game #: 3830
player wins in 1 moves
Game #: 3831
player loses in 1 moves
Game #: 3832
player busts and loses in 1 moves
Game #: 3833
player wins in 2 moves
Game #: 3834
dealer busts and player wins in 1 moves
Game #: 3835
player loses in 1 moves
Game #: 3836
player busts and loses in 2 moves
Game #: 3837
player wins in 1 moves
Game #: 3838
player loses in 1 moves
Game #: 3839
player wins in 1 moves
Game #: 3840
player wins in 1 moves
Game #: 3841
player wins in 0 moves
Game #: 3842
player wins in 0 moves
Game #: 3843
player wins in 1 moves
Game #: 3844
player busts and loses in 2 moves
Game #: 3845
dealer busts and player wins in 1 moves
Game #: 3846
player wins in 1 moves
Game #: 3847
player wins in 0 moves
Game #: 3848
player wins in 1 moves
Game #: 3849
player busts and loses in 3 moves
Game #: 3850
draw in 1 moves
Game #: 3851
player wins in 1 moves
Game #: 3852
dealer busts and player wins in 1 moves
Game #: 3853
player loses in 1 moves
Game #: 3854
player wins in 2 moves
Game #: 3855
dealer busts and player wins in 1 moves
Game #: 3856
player busts and loses in 3 moves
Game #: 3857
player loses in 1 moves
Game #: 3858
player busts and loses in 2 moves
Game #: 3859
player loses in 1 moves
Game #: 3860
player busts and loses in 1 moves
Game #: 3861
player busts and loses in 1 moves
Game #: 3862
player busts and loses in 2 moves
Game #: 3863
player wins in 0 moves
Game #: 3864
dealer busts and player wins in 1 moves
Game #: 3865
player busts and loses in 1 moves
Game #: 3866
dealer busts and player wins in 1 moves
Game #: 3867
dealer busts and player wins in 1 moves
Game #: 3868
player loses in 2 moves
Game #: 3869
player busts and loses in 1 moves
Game #: 3870
player loses in 1 moves
Game #: 3871
player loses in 1 moves
Game #: 3872
player loses in 2 moves
Game #: 3873
player loses in 1 moves
Game #: 3874
player loses in 1 moves
Game #: 3875
player wins in 3 moves
Game #: 3876
player wins in 1 moves
Game #: 3877
player loses in 3 moves
Game #: 3878
player busts and loses in 1 moves
Game #: 3879
draw in 1 moves
Game #: 3880
dealer busts and player wins in 1 moves
Game #: 3881
player loses in 1 moves
Game #: 3882
player busts and loses in 1 moves
Game #: 3883
player busts and loses in 1 moves
Game #: 3884
player loses in 1 moves
Game #: 3885
player loses in 1 moves
Game #: 3886
player wins in 0 moves
Game #: 3887
player loses in 1 moves
Game #: 3888
player wins in 1 moves
Game #: 3889
player loses in 1 moves
Game #: 3890
dealer busts and player wins in 1 moves
Game #: 3891
dealer busts and player wins in 1 moves
Game #: 3892
player wins in 2 moves
Game #: 3893
player busts and loses in 1 moves
Game #: 3894
dealer busts and player wins in 1 moves
Game #: 3895
dealer busts and player wins in 1 moves
Game #: 3896
player busts and loses in 1 moves
Game #: 3897
player busts and loses in 2 moves
Game #: 3898
player busts and loses in 1 moves
Game #: 3899
dealer busts and player wins in 1 moves
Game #: 3900
player loses in 1 moves
Game #: 3901
player loses in 2 moves
Game #: 3902
player loses in 1 moves
Game #: 3903
player loses in 1 moves
Game #: 3904
draw in 1 moves
Game #: 3905
player loses in 1 moves
Game #: 3906
player loses in 1 moves
Game #: 3907
player loses in 1 moves
Game #: 3908
player busts and loses in 1 moves
Game #: 3909
player loses in 1 moves
Game #: 3910
player busts and loses in 1 moves
Game #: 3911
player loses in 1 moves
Game #: 3912
dealer busts and player wins in 1 moves
Game #: 3913
player loses in 1 moves
Game #: 3914
player busts and loses in 4 moves
Game #: 3915
player loses in 1 moves
Game #: 3916
player busts and loses in 3 moves
Game #: 3917
player loses in 1 moves
Game #: 3918
player wins in 0 moves
Game #: 3919
player busts and loses in 2 moves
Game #: 3920
draw in 1 moves
Game #: 3921
player loses in 1 moves
Game #: 3922
draw in 1 moves
Game #: 3923
player wins in 1 moves
Game #: 3924
player loses in 1 moves
Game #: 3925
player loses in 1 moves
Game #: 3926
dealer busts and player wins in 2 moves
Game #: 3927
player wins in 0 moves
Game #: 3928
player busts and loses in 2 moves
Game #: 3929
dealer busts and player wins in 1 moves
Game #: 3930
player loses in 1 moves
Game #: 3931
player loses in 1 moves
Game #: 3932
dealer busts and player wins in 1 moves
Game #: 3933
player loses in 1 moves
Game #: 3934
player wins in 0 moves
Game #: 3935
player busts and loses in 2 moves
Game #: 3936
dealer busts and player wins in 1 moves
Game #: 3937
player loses in 1 moves
Game #: 3938
draw in 1 moves
Game #: 3939
player busts and loses in 2 moves
Game #: 3940
player loses in 1 moves
Game #: 3941
player wins in 0 moves
Game #: 3942
player wins in 1 moves
Game #: 3943
player wins in 1 moves
Game #: 3944
dealer busts and player wins in 3 moves
Game #: 3945
player busts and loses in 1 moves
Game #: 3946
dealer busts and player wins in 1 moves
Game #: 3947
player busts and loses in 1 moves
Game #: 3948
player loses in 3 moves
Game #: 3949
dealer busts and player wins in 1 moves
Game #: 3950
dealer busts and player wins in 1 moves
Game #: 3951
player busts and loses in 1 moves
Game #: 3952
player loses in 1 moves
Game #: 3953
player wins in 1 moves
Game #: 3954
player loses in 1 moves
Game #: 3955
player wins in 1 moves
Game #: 3956
dealer busts and player wins in 2 moves
Game #: 3957
player wins in 2 moves
Game #: 3958
dealer busts and player wins in 2 moves
Game #: 3959
player busts and loses in 2 moves
Game #: 3960
player loses in 1 moves
Game #: 3961
player busts and loses in 1 moves
Game #: 3962
player busts and loses in 1 moves
Game #: 3963
draw in 1 moves
Game #: 3964
player loses in 1 moves
Game #: 3965
player busts and loses in 1 moves
Game #: 3966
player loses in 1 moves
Game #: 3967
dealer busts and player wins in 1 moves
Game #: 3968
player wins in 0 moves
Game #: 3969
player wins in 0 moves
Game #: 3970
player busts and loses in 1 moves
Game #: 3971
dealer busts and player wins in 1 moves
Game #: 3972
player loses in 1 moves
Game #: 3973
player wins in 0 moves
Game #: 3974
player wins in 0 moves
Game #: 3975
player busts and loses in 2 moves
Game #: 3976
player busts and loses in 1 moves
Game #: 3977
player wins in 1 moves
Game #: 3978
player loses in 1 moves
Game #: 3979
player loses in 1 moves
Game #: 3980
dealer busts and player wins in 1 moves
Game #: 3981
player loses in 1 moves
Game #: 3982
player wins in 1 moves
Game #: 3983
player loses in 1 moves
Game #: 3984
dealer busts and player wins in 1 moves
Game #: 3985
player wins in 0 moves
Game #: 3986
player busts and loses in 2 moves
Game #: 3987
player loses in 1 moves
Game #: 3988
player wins in 1 moves
Game #: 3989
draw in 1 moves
Game #: 3990
player wins in 1 moves
Game #: 3991
player wins in 1 moves
Game #: 3992
player wins in 1 moves
Game #: 3993
player busts and loses in 1 moves
Game #: 3994
player busts and loses in 2 moves
Game #: 3995
player loses in 1 moves
Game #: 3996
dealer busts and player wins in 1 moves
Game #: 3997
player loses in 2 moves
Game #: 3998
player loses in 1 moves
Game #: 3999
dealer busts and player wins in 2 moves
Game #: 4000
player loses in 1 moves
Game #: 4001
player loses in 1 moves
Game #: 4002
dealer busts and player wins in 2 moves
Game #: 4003
player loses in 1 moves
Game #: 4004
draw in 1 moves
Game #: 4005
player busts and loses in 1 moves
Game #: 4006
player busts and loses in 1 moves
Game #: 4007
player busts and loses in 1 moves
Game #: 4008
player busts and loses in 1 moves
Game #: 4009
player busts and loses in 1 moves
Game #: 4010
dealer busts and player wins in 1 moves
Game #: 4011
draw in 1 moves
Game #: 4012
dealer busts and player wins in 1 moves
Game #: 4013
player loses in 2 moves
Game #: 4014
player busts and loses in 1 moves
Game #: 4015
player busts and loses in 1 moves
Game #: 4016
player loses in 1 moves
Game #: 4017
player wins in 0 moves
Game #: 4018
player loses in 1 moves
Game #: 4019
player loses in 1 moves
Game #: 4020
player busts and loses in 1 moves
Game #: 4021
player wins in 1 moves
Game #: 4022
player loses in 1 moves
Game #: 4023
player busts and loses in 1 moves
Game #: 4024
player busts and loses in 1 moves
Game #: 4025
player busts and loses in 1 moves
Game #: 4026
draw in 1 moves
Game #: 4027
player busts and loses in 1 moves
Game #: 4028
player wins in 2 moves
Game #: 4029
player loses in 1 moves
Game #: 4030
dealer busts and player wins in 1 moves
Game #: 4031
draw in 1 moves
Game #: 4032
dealer busts and player wins in 2 moves
Game #: 4033
dealer busts and player wins in 1 moves
Game #: 4034
player wins in 3 moves
Game #: 4035
player loses in 1 moves
Game #: 4036
draw in 1 moves
Game #: 4037
player busts and loses in 1 moves
Game #: 4038
player loses in 1 moves
Game #: 4039
player busts and loses in 2 moves
Game #: 4040
player loses in 1 moves
Game #: 4041
dealer busts and player wins in 1 moves
Game #: 4042
player loses in 1 moves
Game #: 4043
dealer busts and player wins in 1 moves
Game #: 4044
player busts and loses in 1 moves
Game #: 4045
player busts and loses in 1 moves
Game #: 4046
dealer busts and player wins in 1 moves
Game #: 4047
player loses in 1 moves
Game #: 4048
draw in 1 moves
Game #: 4049
player busts and loses in 1 moves
Game #: 4050
player loses in 1 moves
Game #: 4051
player wins in 1 moves
Game #: 4052
player busts and loses in 1 moves
Game #: 4053
player busts and loses in 1 moves
Game #: 4054
player busts and loses in 2 moves
Game #: 4055
player wins in 0 moves
Game #: 4056
player loses in 1 moves
Game #: 4057
draw in 1 moves
Game #: 4058
player loses in 1 moves
Game #: 4059
player busts and loses in 1 moves
Game #: 4060
player wins in 0 moves
Game #: 4061
player loses in 1 moves
Game #: 4062
player wins in 0 moves
Game #: 4063
dealer busts and player wins in 1 moves
Game #: 4064
player wins in 0 moves
Game #: 4065
player loses in 1 moves
Game #: 4066
player loses in 1 moves
Game #: 4067
player wins in 1 moves
Game #: 4068
player busts and loses in 1 moves
Game #: 4069
player loses in 1 moves
Game #: 4070
dealer busts and player wins in 2 moves
Game #: 4071
dealer busts and player wins in 1 moves
Game #: 4072
player loses in 1 moves
Game #: 4073
player loses in 2 moves
Game #: 4074
dealer busts and player wins in 1 moves
Game #: 4075
player wins in 0 moves
Game #: 4076
player wins in 1 moves
Game #: 4077
player loses in 1 moves
Game #: 4078
player loses in 1 moves
Game #: 4079
player loses in 1 moves
Game #: 4080
player loses in 1 moves
Game #: 4081
player loses in 1 moves
Game #: 4082
player busts and loses in 1 moves
Game #: 4083
player loses in 1 moves
Game #: 4084
player wins in 1 moves
Game #: 4085
draw in 1 moves
Game #: 4086
player loses in 1 moves
Game #: 4087
player loses in 1 moves
Game #: 4088
player loses in 1 moves
Game #: 4089
player wins in 0 moves
Game #: 4090
player wins in 1 moves
Game #: 4091
player wins in 1 moves
Game #: 4092
player wins in 0 moves
Game #: 4093
dealer busts and player wins in 1 moves
Game #: 4094
player loses in 1 moves
Game #: 4095
player loses in 1 moves
Game #: 4096
player wins in 1 moves
Game #: 4097
player loses in 1 moves
Game #: 4098
dealer busts and player wins in 1 moves
Game #: 4099
player loses in 1 moves
Game #: 4100
player wins in 1 moves
Game #: 4101
player loses in 1 moves
Game #: 4102
player loses in 2 moves
Game #: 4103
dealer busts and player wins in 2 moves
Game #: 4104
player wins in 1 moves
Game #: 4105
draw in 1 moves
Game #: 4106
player wins in 0 moves
Game #: 4107
player busts and loses in 1 moves
Game #: 4108
player busts and loses in 1 moves
Game #: 4109
dealer busts and player wins in 1 moves
Game #: 4110
player wins in 3 moves
Game #: 4111
player wins in 1 moves
Game #: 4112
player busts and loses in 1 moves
Game #: 4113
dealer busts and player wins in 1 moves
Game #: 4114
dealer busts and player wins in 1 moves
Game #: 4115
dealer busts and player wins in 1 moves
Game #: 4116
dealer busts and player wins in 1 moves
Game #: 4117
player loses in 1 moves
Game #: 4118
player busts and loses in 2 moves
Game #: 4119
dealer busts and player wins in 1 moves
Game #: 4120
player loses in 1 moves
Game #: 4121
player loses in 1 moves
Game #: 4122
player loses in 1 moves
Game #: 4123
player loses in 1 moves
Game #: 4124
player loses in 1 moves
Game #: 4125
player busts and loses in 1 moves
Game #: 4126
player loses in 1 moves
Game #: 4127
player wins in 0 moves
Game #: 4128
player wins in 1 moves
Game #: 4129
player wins in 1 moves
Game #: 4130
player busts and loses in 2 moves
Game #: 4131
dealer busts and player wins in 1 moves
Game #: 4132
player loses in 1 moves
Game #: 4133
player busts and loses in 1 moves
Game #: 4134
dealer busts and player wins in 1 moves
Game #: 4135
dealer busts and player wins in 1 moves
Game #: 4136
dealer busts and player wins in 1 moves
Game #: 4137
dealer busts and player wins in 1 moves
Game #: 4138
player loses in 1 moves
Game #: 4139
dealer busts and player wins in 1 moves
Game #: 4140
dealer busts and player wins in 1 moves
Game #: 4141
dealer busts and player wins in 1 moves
Game #: 4142
player busts and loses in 1 moves
Game #: 4143
player loses in 1 moves
Game #: 4144
player loses in 1 moves
Game #: 4145
player busts and loses in 1 moves
Game #: 4146
player wins in 1 moves
Game #: 4147
dealer busts and player wins in 1 moves
Game #: 4148
player busts and loses in 2 moves
Game #: 4149
dealer busts and player wins in 2 moves
Game #: 4150
player loses in 1 moves
Game #: 4151
dealer busts and player wins in 2 moves
Game #: 4152
player loses in 1 moves
Game #: 4153
player loses in 1 moves
Game #: 4154
player wins in 0 moves
Game #: 4155
player loses in 2 moves
Game #: 4156
dealer busts and player wins in 1 moves
Game #: 4157
player busts and loses in 1 moves
Game #: 4158
dealer busts and player wins in 1 moves
Game #: 4159
player wins in 1 moves
Game #: 4160
player loses in 2 moves
Game #: 4161
player busts and loses in 1 moves
Game #: 4162
player busts and loses in 1 moves
Game #: 4163
dealer busts and player wins in 1 moves
Game #: 4164
player wins in 3 moves
Game #: 4165
player loses in 1 moves
Game #: 4166
player busts and loses in 1 moves
Game #: 4167
player busts and loses in 2 moves
Game #: 4168
player busts and loses in 1 moves
Game #: 4169
player busts and loses in 1 moves
Game #: 4170
dealer busts and player wins in 1 moves
Game #: 4171
player busts and loses in 2 moves
Game #: 4172
player loses in 1 moves
Game #: 4173
player busts and loses in 1 moves
Game #: 4174
player loses in 2 moves
Game #: 4175
draw in 2 moves
Game #: 4176
player loses in 1 moves
Game #: 4177
player wins in 0 moves
Game #: 4178
draw in 1 moves
Game #: 4179
dealer busts and player wins in 1 moves
Game #: 4180
dealer busts and player wins in 1 moves
Game #: 4181
dealer busts and player wins in 1 moves
Game #: 4182
player wins in 1 moves
Game #: 4183
player loses in 1 moves
Game #: 4184
player busts and loses in 2 moves
Game #: 4185
player loses in 1 moves
Game #: 4186
player loses in 1 moves
Game #: 4187
player wins in 2 moves
Game #: 4188
player busts and loses in 1 moves
Game #: 4189
player loses in 1 moves
Game #: 4190
player loses in 1 moves
Game #: 4191
dealer busts and player wins in 1 moves
Game #: 4192
player busts and loses in 1 moves
Game #: 4193
player busts and loses in 1 moves
Game #: 4194
player wins in 1 moves
Game #: 4195
player wins in 0 moves
Game #: 4196
player busts and loses in 1 moves
Game #: 4197
dealer busts and player wins in 2 moves
Game #: 4198
player wins in 1 moves
Game #: 4199
player busts and loses in 1 moves
Game #: 4200
dealer busts and player wins in 1 moves
Game #: 4201
player loses in 1 moves
Game #: 4202
player wins in 2 moves
Game #: 4203
player loses in 1 moves
Game #: 4204
dealer busts and player wins in 2 moves
Game #: 4205
draw in 1 moves
Game #: 4206
dealer busts and player wins in 1 moves
Game #: 4207
player loses in 1 moves
Game #: 4208
player loses in 2 moves
Game #: 4209
player loses in 1 moves
Game #: 4210
player loses in 1 moves
Game #: 4211
player loses in 1 moves
Game #: 4212
player loses in 1 moves
Game #: 4213
player loses in 2 moves
Game #: 4214
player busts and loses in 1 moves
Game #: 4215
player busts and loses in 2 moves
Game #: 4216
player wins in 0 moves
Game #: 4217
player loses in 1 moves
Game #: 4218
player busts and loses in 1 moves
Game #: 4219
player busts and loses in 1 moves
Game #: 4220
player loses in 1 moves
Game #: 4221
player loses in 1 moves
Game #: 4222
player wins in 0 moves
Game #: 4223
draw in 2 moves
Game #: 4224
dealer busts and player wins in 2 moves
Game #: 4225
player busts and loses in 1 moves
Game #: 4226
player busts and loses in 2 moves
Game #: 4227
player busts and loses in 1 moves
Game #: 4228
player loses in 2 moves
Game #: 4229
player busts and loses in 1 moves
Game #: 4230
dealer busts and player wins in 1 moves
Game #: 4231
dealer busts and player wins in 1 moves
Game #: 4232
player wins in 0 moves
Game #: 4233
player loses in 1 moves
Game #: 4234
dealer busts and player wins in 1 moves
Game #: 4235
player loses in 1 moves
Game #: 4236
player wins in 2 moves
Game #: 4237
player wins in 1 moves
Game #: 4238
player wins in 0 moves
Game #: 4239
player loses in 1 moves
Game #: 4240
player busts and loses in 2 moves
Game #: 4241
player loses in 1 moves
Game #: 4242
player wins in 0 moves
Game #: 4243
player wins in 1 moves
Game #: 4244
dealer busts and player wins in 1 moves
Game #: 4245
player busts and loses in 1 moves
Game #: 4246
player wins in 0 moves
Game #: 4247
dealer busts and player wins in 1 moves
Game #: 4248
player wins in 1 moves
Game #: 4249
dealer busts and player wins in 1 moves
Game #: 4250
player loses in 1 moves
Game #: 4251
dealer busts and player wins in 1 moves
Game #: 4252
player busts and loses in 1 moves
Game #: 4253
player busts and loses in 1 moves
Game #: 4254
player loses in 1 moves
Game #: 4255
player busts and loses in 1 moves
Game #: 4256
player loses in 1 moves
Game #: 4257
player wins in 1 moves
Game #: 4258
player loses in 1 moves
Game #: 4259
player loses in 3 moves
Game #: 4260
player loses in 1 moves
Game #: 4261
player loses in 1 moves
Game #: 4262
dealer busts and player wins in 1 moves
Game #: 4263
player loses in 1 moves
Game #: 4264
player loses in 1 moves
Game #: 4265
dealer busts and player wins in 1 moves
Game #: 4266
player loses in 1 moves
Game #: 4267
player loses in 1 moves
Game #: 4268
player busts and loses in 1 moves
Game #: 4269
player wins in 0 moves
Game #: 4270
player loses in 2 moves
Game #: 4271
player loses in 1 moves
Game #: 4272
draw in 1 moves
Game #: 4273
player loses in 2 moves
Game #: 4274
player loses in 1 moves
Game #: 4275
player busts and loses in 3 moves
Game #: 4276
dealer busts and player wins in 1 moves
Game #: 4277
dealer busts and player wins in 1 moves
Game #: 4278
player loses in 1 moves
Game #: 4279
player loses in 1 moves
Game #: 4280
dealer busts and player wins in 1 moves
Game #: 4281
dealer busts and player wins in 1 moves
Game #: 4282
player loses in 1 moves
Game #: 4283
player busts and loses in 1 moves
Game #: 4284
player loses in 1 moves
Game #: 4285
player wins in 1 moves
Game #: 4286
player busts and loses in 1 moves
Game #: 4287
player busts and loses in 1 moves
Game #: 4288
player loses in 1 moves
Game #: 4289
player wins in 1 moves
Game #: 4290
player loses in 1 moves
Game #: 4291
dealer busts and player wins in 1 moves
Game #: 4292
dealer busts and player wins in 1 moves
Game #: 4293
player busts and loses in 1 moves
Game #: 4294
player loses in 1 moves
Game #: 4295
player loses in 1 moves
Game #: 4296
dealer busts and player wins in 1 moves
Game #: 4297
player wins in 1 moves
Game #: 4298
player loses in 1 moves
Game #: 4299
player loses in 1 moves
Game #: 4300
player loses in 1 moves
Game #: 4301
player loses in 1 moves
Game #: 4302
player loses in 1 moves
Game #: 4303
player wins in 1 moves
Game #: 4304
dealer busts and player wins in 1 moves
Game #: 4305
player loses in 1 moves
Game #: 4306
player busts and loses in 1 moves
Game #: 4307
player loses in 2 moves
Game #: 4308
draw in 1 moves
Game #: 4309
player busts and loses in 1 moves
Game #: 4310
player wins in 0 moves
Game #: 4311
player loses in 1 moves
Game #: 4312
player busts and loses in 1 moves
Game #: 4313
player loses in 1 moves
Game #: 4314
player busts and loses in 1 moves
Game #: 4315
dealer busts and player wins in 2 moves
Game #: 4316
player loses in 2 moves
Game #: 4317
dealer busts and player wins in 1 moves
Game #: 4318
player wins in 0 moves
Game #: 4319
player busts and loses in 1 moves
Game #: 4320
dealer busts and player wins in 1 moves
Game #: 4321
player busts and loses in 1 moves
Game #: 4322
dealer busts and player wins in 1 moves
Game #: 4323
player wins in 2 moves
Game #: 4324
player busts and loses in 1 moves
Game #: 4325
player wins in 0 moves
Game #: 4326
dealer busts and player wins in 2 moves
Game #: 4327
player loses in 1 moves
Game #: 4328
player wins in 0 moves
Game #: 4329
player busts and loses in 1 moves
Game #: 4330
player wins in 1 moves
Game #: 4331
player wins in 0 moves
Game #: 4332
player loses in 1 moves
Game #: 4333
player wins in 0 moves
Game #: 4334
player busts and loses in 1 moves
Game #: 4335
player loses in 1 moves
Game #: 4336
dealer busts and player wins in 1 moves
Game #: 4337
player loses in 1 moves
Game #: 4338
player wins in 0 moves
Game #: 4339
player loses in 1 moves
Game #: 4340
player busts and loses in 2 moves
Game #: 4341
player loses in 1 moves
Game #: 4342
draw in 1 moves
Game #: 4343
draw in 1 moves
Game #: 4344
player busts and loses in 1 moves
Game #: 4345
player loses in 1 moves
Game #: 4346
player busts and loses in 1 moves
Game #: 4347
player busts and loses in 1 moves
Game #: 4348
dealer busts and player wins in 2 moves
Game #: 4349
player loses in 2 moves
Game #: 4350
player busts and loses in 1 moves
Game #: 4351
player busts and loses in 3 moves
Game #: 4352
player loses in 1 moves
Game #: 4353
player loses in 1 moves
Game #: 4354
player busts and loses in 1 moves
Game #: 4355
player wins in 0 moves
Game #: 4356
player loses in 1 moves
Game #: 4357
player wins in 1 moves
Game #: 4358
player wins in 3 moves
Game #: 4359
draw in 1 moves
Game #: 4360
player busts and loses in 1 moves
Game #: 4361
player busts and loses in 1 moves
Game #: 4362
player busts and loses in 1 moves
Game #: 4363
dealer busts and player wins in 2 moves
Game #: 4364
dealer busts and player wins in 1 moves
Game #: 4365
player busts and loses in 1 moves
Game #: 4366
player loses in 1 moves
Game #: 4367
player loses in 1 moves
Game #: 4368
draw in 1 moves
Game #: 4369
player wins in 0 moves
Game #: 4370
dealer busts and player wins in 1 moves
Game #: 4371
player busts and loses in 1 moves
Game #: 4372
player wins in 1 moves
Game #: 4373
player loses in 1 moves
Game #: 4374
player loses in 1 moves
Game #: 4375
player busts and loses in 2 moves
Game #: 4376
dealer busts and player wins in 1 moves
Game #: 4377
player loses in 1 moves
Game #: 4378
player loses in 1 moves
Game #: 4379
player busts and loses in 2 moves
Game #: 4380
draw in 2 moves
Game #: 4381
player busts and loses in 1 moves
Game #: 4382
player loses in 3 moves
Game #: 4383
player busts and loses in 1 moves
Game #: 4384
player loses in 1 moves
Game #: 4385
player loses in 1 moves
Game #: 4386
player busts and loses in 1 moves
Game #: 4387
player loses in 1 moves
Game #: 4388
player busts and loses in 2 moves
Game #: 4389
player busts and loses in 2 moves
Game #: 4390
player loses in 1 moves
Game #: 4391
player busts and loses in 2 moves
Game #: 4392
player wins in 1 moves
Game #: 4393
player loses in 1 moves
Game #: 4394
player loses in 1 moves
Game #: 4395
dealer busts and player wins in 1 moves
Game #: 4396
player wins in 0 moves
Game #: 4397
player busts and loses in 1 moves
Game #: 4398
player wins in 1 moves
Game #: 4399
player wins in 0 moves
Game #: 4400
player loses in 1 moves
Game #: 4401
player busts and loses in 2 moves
Game #: 4402
draw in 1 moves
Game #: 4403
dealer busts and player wins in 3 moves
Game #: 4404
dealer busts and player wins in 1 moves
Game #: 4405
player loses in 1 moves
Game #: 4406
player busts and loses in 3 moves
Game #: 4407
player wins in 0 moves
Game #: 4408
player loses in 1 moves
Game #: 4409
dealer busts and player wins in 1 moves
Game #: 4410
player busts and loses in 1 moves
Game #: 4411
dealer busts and player wins in 1 moves
Game #: 4412
player busts and loses in 1 moves
Game #: 4413
player loses in 1 moves
Game #: 4414
player loses in 1 moves
Game #: 4415
player wins in 1 moves
Game #: 4416
player loses in 1 moves
Game #: 4417
player wins in 2 moves
Game #: 4418
player loses in 1 moves
Game #: 4419
player loses in 1 moves
Game #: 4420
player wins in 1 moves
Game #: 4421
player loses in 2 moves
Game #: 4422
player busts and loses in 1 moves
Game #: 4423
dealer busts and player wins in 1 moves
Game #: 4424
dealer busts and player wins in 1 moves
Game #: 4425
player wins in 0 moves
Game #: 4426
player loses in 1 moves
Game #: 4427
player busts and loses in 1 moves
Game #: 4428
player loses in 2 moves
Game #: 4429
player busts and loses in 1 moves
Game #: 4430
player loses in 1 moves
Game #: 4431
dealer busts and player wins in 1 moves
Game #: 4432
draw in 1 moves
Game #: 4433
draw in 1 moves
Game #: 4434
player wins in 0 moves
Game #: 4435
dealer busts and player wins in 1 moves
Game #: 4436
player busts and loses in 1 moves
Game #: 4437
player loses in 1 moves
Game #: 4438
player loses in 1 moves
Game #: 4439
player loses in 1 moves
Game #: 4440
player wins in 0 moves
Game #: 4441
dealer busts and player wins in 1 moves
Game #: 4442
player loses in 1 moves
Game #: 4443
player loses in 1 moves
Game #: 4444
dealer busts and player wins in 1 moves
Game #: 4445
player loses in 1 moves
Game #: 4446
player loses in 1 moves
Game #: 4447
player busts and loses in 1 moves
Game #: 4448
player loses in 1 moves
Game #: 4449
dealer busts and player wins in 1 moves
Game #: 4450
player loses in 1 moves
Game #: 4451
player loses in 2 moves
Game #: 4452
player loses in 1 moves
Game #: 4453
player wins in 1 moves
Game #: 4454
player busts and loses in 1 moves
Game #: 4455
player wins in 2 moves
Game #: 4456
player wins in 0 moves
Game #: 4457
player wins in 0 moves
Game #: 4458
dealer busts and player wins in 2 moves
Game #: 4459
player wins in 0 moves
Game #: 4460
player loses in 3 moves
Game #: 4461
player wins in 1 moves
Game #: 4462
player wins in 0 moves
Game #: 4463
player busts and loses in 2 moves
Game #: 4464
player loses in 2 moves
Game #: 4465
dealer busts and player wins in 1 moves
Game #: 4466
player busts and loses in 1 moves
Game #: 4467
player busts and loses in 1 moves
Game #: 4468
player busts and loses in 1 moves
Game #: 4469
player loses in 1 moves
Game #: 4470
dealer busts and player wins in 1 moves
Game #: 4471
dealer busts and player wins in 1 moves
Game #: 4472
player loses in 2 moves
Game #: 4473
player wins in 1 moves
Game #: 4474
dealer busts and player wins in 1 moves
Game #: 4475
player wins in 1 moves
Game #: 4476
player loses in 1 moves
Game #: 4477
player loses in 2 moves
Game #: 4478
player wins in 1 moves
Game #: 4479
player loses in 2 moves
Game #: 4480
player loses in 1 moves
Game #: 4481
draw in 1 moves
Game #: 4482
player busts and loses in 1 moves
Game #: 4483
player busts and loses in 1 moves
Game #: 4484
player busts and loses in 1 moves
Game #: 4485
player busts and loses in 1 moves
Game #: 4486
player wins in 0 moves
Game #: 4487
player loses in 1 moves
Game #: 4488
player loses in 1 moves
Game #: 4489
dealer busts and player wins in 1 moves
Game #: 4490
player loses in 1 moves
Game #: 4491
player loses in 2 moves
Game #: 4492
player busts and loses in 1 moves
Game #: 4493
player loses in 1 moves
Game #: 4494
dealer busts and player wins in 3 moves
Game #: 4495
player wins in 0 moves
Game #: 4496
player wins in 2 moves
Game #: 4497
player busts and loses in 1 moves
Game #: 4498
player loses in 1 moves
Game #: 4499
dealer busts and player wins in 1 moves
Game #: 4500
dealer busts and player wins in 1 moves
Game #: 4501
dealer busts and player wins in 2 moves
Game #: 4502
player busts and loses in 1 moves
Game #: 4503
dealer busts and player wins in 1 moves
Game #: 4504
player loses in 1 moves
Game #: 4505
dealer busts and player wins in 1 moves
Game #: 4506
player loses in 1 moves
Game #: 4507
player wins in 0 moves
Game #: 4508
player loses in 1 moves
Game #: 4509
player loses in 1 moves
Game #: 4510
player busts and loses in 1 moves
Game #: 4511
draw in 1 moves
Game #: 4512
player wins in 1 moves
Game #: 4513
player wins in 0 moves
Game #: 4514
dealer busts and player wins in 1 moves
Game #: 4515
player busts and loses in 1 moves
Game #: 4516
player busts and loses in 1 moves
Game #: 4517
player loses in 1 moves
Game #: 4518
player wins in 1 moves
Game #: 4519
dealer busts and player wins in 1 moves
Game #: 4520
player loses in 1 moves
Game #: 4521
player loses in 2 moves
Game #: 4522
player wins in 0 moves
Game #: 4523
dealer busts and player wins in 1 moves
Game #: 4524
player busts and loses in 1 moves
Game #: 4525
player wins in 0 moves
Game #: 4526
player wins in 1 moves
Game #: 4527
player wins in 2 moves
Game #: 4528
player loses in 1 moves
Game #: 4529
player busts and loses in 1 moves
Game #: 4530
player wins in 1 moves
Game #: 4531
player busts and loses in 2 moves
Game #: 4532
player loses in 1 moves
Game #: 4533
player loses in 1 moves
Game #: 4534
player loses in 1 moves
Game #: 4535
player wins in 0 moves
Game #: 4536
player wins in 0 moves
Game #: 4537
player wins in 1 moves
Game #: 4538
player busts and loses in 1 moves
Game #: 4539
player wins in 0 moves
Game #: 4540
player busts and loses in 2 moves
Game #: 4541
dealer busts and player wins in 1 moves
Game #: 4542
dealer busts and player wins in 1 moves
Game #: 4543
player loses in 1 moves
Game #: 4544
player busts and loses in 1 moves
Game #: 4545
player wins in 1 moves
Game #: 4546
player wins in 2 moves
Game #: 4547
player busts and loses in 1 moves
Game #: 4548
draw in 1 moves
Game #: 4549
player loses in 1 moves
Game #: 4550
player busts and loses in 1 moves
Game #: 4551
draw in 2 moves
Game #: 4552
player busts and loses in 1 moves
Game #: 4553
player loses in 1 moves
Game #: 4554
dealer busts and player wins in 1 moves
Game #: 4555
player loses in 1 moves
Game #: 4556
player busts and loses in 1 moves
Game #: 4557
player wins in 0 moves
Game #: 4558
player busts and loses in 1 moves
Game #: 4559
player loses in 1 moves
Game #: 4560
player busts and loses in 1 moves
Game #: 4561
dealer busts and player wins in 2 moves
Game #: 4562
player loses in 1 moves
Game #: 4563
player busts and loses in 1 moves
Game #: 4564
player loses in 1 moves
Game #: 4565
draw in 1 moves
Game #: 4566
player loses in 1 moves
Game #: 4567
player loses in 1 moves
Game #: 4568
player busts and loses in 1 moves
Game #: 4569
player wins in 1 moves
Game #: 4570
player wins in 1 moves
Game #: 4571
player loses in 1 moves
Game #: 4572
dealer busts and player wins in 1 moves
Game #: 4573
player loses in 1 moves
Game #: 4574
player wins in 0 moves
Game #: 4575
player loses in 1 moves
Game #: 4576
player busts and loses in 1 moves
Game #: 4577
player busts and loses in 1 moves
Game #: 4578
player loses in 1 moves
Game #: 4579
dealer busts and player wins in 1 moves
Game #: 4580
dealer busts and player wins in 1 moves
Game #: 4581
player loses in 1 moves
Game #: 4582
dealer busts and player wins in 2 moves
Game #: 4583
player busts and loses in 1 moves
Game #: 4584
player wins in 1 moves
Game #: 4585
player busts and loses in 2 moves
Game #: 4586
dealer busts and player wins in 1 moves
Game #: 4587
draw in 2 moves
Game #: 4588
player loses in 2 moves
Game #: 4589
player busts and loses in 1 moves
Game #: 4590
dealer busts and player wins in 2 moves
Game #: 4591
player wins in 1 moves
Game #: 4592
player loses in 2 moves
Game #: 4593
player busts and loses in 1 moves
Game #: 4594
player loses in 1 moves
Game #: 4595
player busts and loses in 1 moves
Game #: 4596
player busts and loses in 1 moves
Game #: 4597
player loses in 1 moves
Game #: 4598
player wins in 1 moves
Game #: 4599
player loses in 1 moves
Game #: 4600
player wins in 1 moves
Game #: 4601
player loses in 1 moves
Game #: 4602
player loses in 1 moves
Game #: 4603
player loses in 1 moves
Game #: 4604
player busts and loses in 2 moves
Game #: 4605
player busts and loses in 1 moves
Game #: 4606
player busts and loses in 1 moves
Game #: 4607
player wins in 0 moves
Game #: 4608
dealer busts and player wins in 1 moves
Game #: 4609
player busts and loses in 1 moves
Game #: 4610
player wins in 1 moves
Game #: 4611
player wins in 1 moves
Game #: 4612
dealer busts and player wins in 1 moves
Game #: 4613
player busts and loses in 1 moves
Game #: 4614
player busts and loses in 1 moves
Game #: 4615
player busts and loses in 1 moves
Game #: 4616
player loses in 1 moves
Game #: 4617
player busts and loses in 2 moves
Game #: 4618
player wins in 1 moves
Game #: 4619
player loses in 1 moves
Game #: 4620
player busts and loses in 1 moves
Game #: 4621
player busts and loses in 2 moves
Game #: 4622
dealer busts and player wins in 1 moves
Game #: 4623
draw in 1 moves
Game #: 4624
dealer busts and player wins in 2 moves
Game #: 4625
dealer busts and player wins in 2 moves
Game #: 4626
player wins in 1 moves
Game #: 4627
dealer busts and player wins in 1 moves
Game #: 4628
player loses in 3 moves
Game #: 4629
player busts and loses in 1 moves
Game #: 4630
player busts and loses in 1 moves
Game #: 4631
draw in 1 moves
Game #: 4632
player loses in 1 moves
Game #: 4633
draw in 1 moves
Game #: 4634
player wins in 0 moves
Game #: 4635
player loses in 1 moves
Game #: 4636
player busts and loses in 1 moves
Game #: 4637
player loses in 1 moves
Game #: 4638
player loses in 1 moves
Game #: 4639
player loses in 1 moves
Game #: 4640
player loses in 1 moves
Game #: 4641
player wins in 0 moves
Game #: 4642
player wins in 1 moves
Game #: 4643
player busts and loses in 1 moves
Game #: 4644
player loses in 1 moves
Game #: 4645
player wins in 1 moves
Game #: 4646
player busts and loses in 2 moves
Game #: 4647
player busts and loses in 2 moves
Game #: 4648
player wins in 1 moves
Game #: 4649
dealer busts and player wins in 3 moves
Game #: 4650
dealer busts and player wins in 1 moves
Game #: 4651
dealer busts and player wins in 1 moves
Game #: 4652
dealer busts and player wins in 1 moves
Game #: 4653
player busts and loses in 2 moves
Game #: 4654
player loses in 1 moves
Game #: 4655
player busts and loses in 1 moves
Game #: 4656
player loses in 1 moves
Game #: 4657
player loses in 1 moves
Game #: 4658
player busts and loses in 1 moves
Game #: 4659
player loses in 1 moves
Game #: 4660
dealer busts and player wins in 1 moves
Game #: 4661
player busts and loses in 1 moves
Game #: 4662
player busts and loses in 1 moves
Game #: 4663
player loses in 1 moves
Game #: 4664
player loses in 2 moves
Game #: 4665
player busts and loses in 1 moves
Game #: 4666
player busts and loses in 1 moves
Game #: 4667
player wins in 1 moves
Game #: 4668
player loses in 1 moves
Game #: 4669
player loses in 1 moves
Game #: 4670
dealer busts and player wins in 1 moves
Game #: 4671
dealer busts and player wins in 1 moves
Game #: 4672
player loses in 1 moves
Game #: 4673
player wins in 0 moves
Game #: 4674
player busts and loses in 1 moves
Game #: 4675
dealer busts and player wins in 1 moves
Game #: 4676
player loses in 1 moves
Game #: 4677
dealer busts and player wins in 2 moves
Game #: 4678
player loses in 1 moves
Game #: 4679
player loses in 1 moves
Game #: 4680
player loses in 2 moves
Game #: 4681
player wins in 0 moves
Game #: 4682
player loses in 1 moves
Game #: 4683
dealer busts and player wins in 1 moves
Game #: 4684
player loses in 1 moves
Game #: 4685
player wins in 1 moves
Game #: 4686
player loses in 1 moves
Game #: 4687
player loses in 1 moves
Game #: 4688
player loses in 1 moves
Game #: 4689
player wins in 1 moves
Game #: 4690
player loses in 1 moves
Game #: 4691
player busts and loses in 1 moves
Game #: 4692
player busts and loses in 1 moves
Game #: 4693
player loses in 2 moves
Game #: 4694
draw in 1 moves
Game #: 4695
player wins in 0 moves
Game #: 4696
dealer busts and player wins in 1 moves
Game #: 4697
player wins in 0 moves
Game #: 4698
player wins in 1 moves
Game #: 4699
player busts and loses in 1 moves
Game #: 4700
player wins in 1 moves
Game #: 4701
player loses in 2 moves
Game #: 4702
player wins in 0 moves
Game #: 4703
player busts and loses in 1 moves
Game #: 4704
dealer busts and player wins in 2 moves
Game #: 4705
player loses in 2 moves
Game #: 4706
player busts and loses in 1 moves
Game #: 4707
player wins in 0 moves
Game #: 4708
player loses in 1 moves
Game #: 4709
player wins in 0 moves
Game #: 4710
player wins in 2 moves
Game #: 4711
player loses in 1 moves
Game #: 4712
player loses in 1 moves
Game #: 4713
dealer busts and player wins in 2 moves
Game #: 4714
draw in 1 moves
Game #: 4715
dealer busts and player wins in 2 moves
Game #: 4716
dealer busts and player wins in 1 moves
Game #: 4717
player loses in 2 moves
Game #: 4718
draw in 1 moves
Game #: 4719
player loses in 2 moves
Game #: 4720
player busts and loses in 1 moves
Game #: 4721
player busts and loses in 1 moves
Game #: 4722
player loses in 1 moves
Game #: 4723
player busts and loses in 1 moves
Game #: 4724
player loses in 1 moves
Game #: 4725
dealer busts and player wins in 1 moves
Game #: 4726
player wins in 1 moves
Game #: 4727
dealer busts and player wins in 3 moves
Game #: 4728
player busts and loses in 1 moves
Game #: 4729
player wins in 0 moves
Game #: 4730
dealer busts and player wins in 1 moves
Game #: 4731
player busts and loses in 1 moves
Game #: 4732
dealer busts and player wins in 1 moves
Game #: 4733
player loses in 1 moves
Game #: 4734
player loses in 1 moves
Game #: 4735
player wins in 1 moves
Game #: 4736
player loses in 1 moves
Game #: 4737
player busts and loses in 1 moves
Game #: 4738
player loses in 1 moves
Game #: 4739
player wins in 2 moves
Game #: 4740
player loses in 1 moves
Game #: 4741
dealer busts and player wins in 1 moves
Game #: 4742
player wins in 1 moves
Game #: 4743
player busts and loses in 1 moves
Game #: 4744
player wins in 1 moves
Game #: 4745
player loses in 1 moves
Game #: 4746
player wins in 0 moves
Game #: 4747
player wins in 2 moves
Game #: 4748
player busts and loses in 1 moves
Game #: 4749
player loses in 1 moves
Game #: 4750
dealer busts and player wins in 1 moves
Game #: 4751
player loses in 1 moves
Game #: 4752
dealer busts and player wins in 1 moves
Game #: 4753
dealer busts and player wins in 1 moves
Game #: 4754
player wins in 2 moves
Game #: 4755
player loses in 1 moves
Game #: 4756
player wins in 1 moves
Game #: 4757
player loses in 2 moves
Game #: 4758
player wins in 0 moves
Game #: 4759
draw in 1 moves
Game #: 4760
player loses in 1 moves
Game #: 4761
player busts and loses in 3 moves
Game #: 4762
player loses in 1 moves
Game #: 4763
player loses in 2 moves
Game #: 4764
player wins in 1 moves
Game #: 4765
player busts and loses in 1 moves
Game #: 4766
player wins in 1 moves
Game #: 4767
player loses in 2 moves
Game #: 4768
player loses in 1 moves
Game #: 4769
dealer busts and player wins in 2 moves
Game #: 4770
player wins in 3 moves
Game #: 4771
dealer busts and player wins in 1 moves
Game #: 4772
player loses in 1 moves
Game #: 4773
player wins in 0 moves
Game #: 4774
player busts and loses in 1 moves
Game #: 4775
player busts and loses in 1 moves
Game #: 4776
player busts and loses in 1 moves
Game #: 4777
dealer busts and player wins in 1 moves
Game #: 4778
player busts and loses in 2 moves
Game #: 4779
player loses in 1 moves
Game #: 4780
player wins in 0 moves
Game #: 4781
player loses in 1 moves
Game #: 4782
dealer busts and player wins in 1 moves
Game #: 4783
player busts and loses in 1 moves
Game #: 4784
player busts and loses in 1 moves
Game #: 4785
player loses in 1 moves
Game #: 4786
player loses in 1 moves
Game #: 4787
player busts and loses in 2 moves
Game #: 4788
player loses in 1 moves
Game #: 4789
player busts and loses in 1 moves
Game #: 4790
player loses in 1 moves
Game #: 4791
player loses in 1 moves
Game #: 4792
player loses in 1 moves
Game #: 4793
player busts and loses in 1 moves
Game #: 4794
player loses in 1 moves
Game #: 4795
player loses in 1 moves
Game #: 4796
player loses in 1 moves
Game #: 4797
player loses in 1 moves
Game #: 4798
player loses in 1 moves
Game #: 4799
player busts and loses in 1 moves
Game #: 4800
player busts and loses in 1 moves
Game #: 4801
player loses in 1 moves
Game #: 4802
player loses in 1 moves
Game #: 4803
dealer busts and player wins in 1 moves
Game #: 4804
player busts and loses in 2 moves
Game #: 4805
player loses in 1 moves
Game #: 4806
player wins in 1 moves
Game #: 4807
player busts and loses in 1 moves
Game #: 4808
player busts and loses in 1 moves
Game #: 4809
player busts and loses in 1 moves
Game #: 4810
player busts and loses in 1 moves
Game #: 4811
player loses in 1 moves
Game #: 4812
player busts and loses in 2 moves
Game #: 4813
dealer busts and player wins in 2 moves
Game #: 4814
player wins in 1 moves
Game #: 4815
dealer busts and player wins in 1 moves
Game #: 4816
player wins in 0 moves
Game #: 4817
player loses in 1 moves
Game #: 4818
dealer busts and player wins in 1 moves
Game #: 4819
player busts and loses in 1 moves
Game #: 4820
player loses in 1 moves
Game #: 4821
draw in 1 moves
Game #: 4822
dealer busts and player wins in 1 moves
Game #: 4823
player loses in 1 moves
Game #: 4824
player loses in 1 moves
Game #: 4825
player busts and loses in 1 moves
Game #: 4826
dealer busts and player wins in 2 moves
Game #: 4827
draw in 1 moves
Game #: 4828
player busts and loses in 1 moves
Game #: 4829
draw in 2 moves
Game #: 4830
player wins in 1 moves
Game #: 4831
player busts and loses in 1 moves
Game #: 4832
player loses in 2 moves
Game #: 4833
player loses in 1 moves
Game #: 4834
draw in 1 moves
Game #: 4835
player busts and loses in 2 moves
Game #: 4836
dealer busts and player wins in 2 moves
Game #: 4837
player busts and loses in 1 moves
Game #: 4838
player loses in 1 moves
Game #: 4839
player busts and loses in 1 moves
Game #: 4840
player wins in 0 moves
Game #: 4841
player busts and loses in 1 moves
Game #: 4842
player loses in 1 moves
Game #: 4843
player loses in 1 moves
Game #: 4844
player loses in 2 moves
Game #: 4845
player loses in 1 moves
Game #: 4846
dealer busts and player wins in 1 moves
Game #: 4847
player busts and loses in 1 moves
Game #: 4848
player wins in 1 moves
Game #: 4849
player wins in 0 moves
Game #: 4850
player busts and loses in 1 moves
Game #: 4851
draw in 1 moves
Game #: 4852
player busts and loses in 2 moves
Game #: 4853
dealer busts and player wins in 1 moves
Game #: 4854
player loses in 1 moves
Game #: 4855
player loses in 3 moves
Game #: 4856
player wins in 2 moves
Game #: 4857
player busts and loses in 1 moves
Game #: 4858
dealer busts and player wins in 1 moves
Game #: 4859
player wins in 2 moves
Game #: 4860
player loses in 1 moves
Game #: 4861
draw in 1 moves
Game #: 4862
player busts and loses in 1 moves
Game #: 4863
dealer busts and player wins in 1 moves
Game #: 4864
dealer busts and player wins in 1 moves
Game #: 4865
player busts and loses in 1 moves
Game #: 4866
draw in 1 moves
Game #: 4867
player wins in 1 moves
Game #: 4868
player loses in 1 moves
Game #: 4869
player busts and loses in 1 moves
Game #: 4870
player loses in 1 moves
Game #: 4871
player busts and loses in 1 moves
Game #: 4872
player wins in 0 moves
Game #: 4873
player loses in 1 moves
Game #: 4874
draw in 3 moves
Game #: 4875
dealer busts and player wins in 2 moves
Game #: 4876
player busts and loses in 1 moves
Game #: 4877
draw in 1 moves
Game #: 4878
player wins in 1 moves
Game #: 4879
player loses in 1 moves
Game #: 4880
dealer busts and player wins in 2 moves
Game #: 4881
player wins in 3 moves
Game #: 4882
player loses in 1 moves
Game #: 4883
player loses in 1 moves
Game #: 4884
dealer busts and player wins in 2 moves
Game #: 4885
player wins in 1 moves
Game #: 4886
player busts and loses in 2 moves
Game #: 4887
player wins in 1 moves
Game #: 4888
player wins in 1 moves
Game #: 4889
player loses in 1 moves
Game #: 4890
player loses in 1 moves
Game #: 4891
player loses in 1 moves
Game #: 4892
player wins in 0 moves
Game #: 4893
player busts and loses in 2 moves
Game #: 4894
player loses in 1 moves
Game #: 4895
player wins in 0 moves
Game #: 4896
player loses in 1 moves
Game #: 4897
player loses in 1 moves
Game #: 4898
player loses in 1 moves
Game #: 4899
player wins in 0 moves
Game #: 4900
player busts and loses in 1 moves
Game #: 4901
player wins in 1 moves
Game #: 4902
player busts and loses in 1 moves
Game #: 4903
player loses in 1 moves
Game #: 4904
player busts and loses in 1 moves
Game #: 4905
player loses in 2 moves
Game #: 4906
player loses in 1 moves
Game #: 4907
player busts and loses in 2 moves
Game #: 4908
player loses in 1 moves
Game #: 4909
player wins in 1 moves
Game #: 4910
player wins in 1 moves
Game #: 4911
player busts and loses in 1 moves
Game #: 4912
player loses in 1 moves
Game #: 4913
player busts and loses in 2 moves
Game #: 4914
player wins in 1 moves
Game #: 4915
dealer busts and player wins in 2 moves
Game #: 4916
dealer busts and player wins in 1 moves
Game #: 4917
draw in 2 moves
Game #: 4918
player busts and loses in 1 moves
Game #: 4919
dealer busts and player wins in 1 moves
Game #: 4920
player loses in 1 moves
Game #: 4921
player busts and loses in 2 moves
Game #: 4922
dealer busts and player wins in 1 moves
Game #: 4923
player busts and loses in 1 moves
Game #: 4924
dealer busts and player wins in 1 moves
Game #: 4925
player wins in 1 moves
Game #: 4926
player loses in 1 moves
Game #: 4927
player wins in 1 moves
Game #: 4928
player loses in 1 moves
Game #: 4929
player loses in 1 moves
Game #: 4930
player loses in 1 moves
Game #: 4931
player busts and loses in 2 moves
Game #: 4932
player wins in 0 moves
Game #: 4933
player loses in 1 moves
Game #: 4934
player loses in 1 moves
Game #: 4935
player busts and loses in 1 moves
Game #: 4936
player busts and loses in 1 moves
Game #: 4937
player loses in 1 moves
Game #: 4938
player loses in 2 moves
Game #: 4939
player loses in 1 moves
Game #: 4940
player busts and loses in 1 moves
Game #: 4941
player loses in 1 moves
Game #: 4942
dealer busts and player wins in 1 moves
Game #: 4943
player wins in 0 moves
Game #: 4944
player loses in 1 moves
Game #: 4945
dealer busts and player wins in 1 moves
Game #: 4946
player wins in 0 moves
Game #: 4947
player wins in 1 moves
Game #: 4948
player busts and loses in 1 moves
Game #: 4949
player loses in 2 moves
Game #: 4950
player busts and loses in 1 moves
Game #: 4951
player loses in 1 moves
Game #: 4952
player loses in 1 moves
Game #: 4953
draw in 1 moves
Game #: 4954
dealer busts and player wins in 1 moves
Game #: 4955
player loses in 1 moves
Game #: 4956
player loses in 1 moves
Game #: 4957
dealer busts and player wins in 1 moves
Game #: 4958
player busts and loses in 1 moves
Game #: 4959
dealer busts and player wins in 1 moves
Game #: 4960
draw in 1 moves
Game #: 4961
player busts and loses in 1 moves
Game #: 4962
player loses in 1 moves
Game #: 4963
player loses in 1 moves
Game #: 4964
player wins in 0 moves
Game #: 4965
dealer busts and player wins in 1 moves
Game #: 4966
player busts and loses in 1 moves
Game #: 4967
dealer busts and player wins in 2 moves
Game #: 4968
player loses in 1 moves
Game #: 4969
player loses in 2 moves
Game #: 4970
player wins in 1 moves
Game #: 4971
player loses in 1 moves
Game #: 4972
draw in 3 moves
Game #: 4973
player busts and loses in 2 moves
Game #: 4974
dealer busts and player wins in 2 moves
Game #: 4975
dealer busts and player wins in 1 moves
Game #: 4976
player busts and loses in 1 moves
Game #: 4977
player wins in 2 moves
Game #: 4978
player busts and loses in 1 moves
Game #: 4979
player wins in 1 moves
Game #: 4980
player wins in 4 moves
Game #: 4981
player loses in 2 moves
Game #: 4982
player busts and loses in 1 moves
Game #: 4983
player loses in 1 moves
Game #: 4984
player busts and loses in 1 moves
Game #: 4985
dealer busts and player wins in 1 moves
Game #: 4986
player busts and loses in 1 moves
Game #: 4987
player wins in 0 moves
Game #: 4988
dealer busts and player wins in 2 moves
Game #: 4989
player busts and loses in 1 moves
Game #: 4990
player busts and loses in 1 moves
Game #: 4991
player loses in 2 moves
Game #: 4992
player loses in 2 moves
Game #: 4993
player loses in 1 moves
Game #: 4994
dealer busts and player wins in 1 moves
Game #: 4995
player loses in 1 moves
Game #: 4996
player wins in 1 moves
Game #: 4997
player busts and loses in 2 moves
Game #: 4998
player loses in 2 moves
Game #: 4999
player busts and loses in 1 moves
Game #: 5000
dealer busts and player wins in 1 moves
Game #: 5001
player busts and loses in 2 moves
Game #: 5002
player busts and loses in 1 moves
Game #: 5003
draw in 1 moves
Game #: 5004
player loses in 2 moves
Game #: 5005
player loses in 1 moves
Game #: 5006
dealer busts and player wins in 1 moves
Game #: 5007
dealer busts and player wins in 1 moves
Game #: 5008
player loses in 1 moves
Game #: 5009
player wins in 0 moves
Game #: 5010
player wins in 0 moves
Game #: 5011
player loses in 2 moves
Game #: 5012
player loses in 2 moves
Game #: 5013
player loses in 1 moves
Game #: 5014
dealer busts and player wins in 1 moves
Game #: 5015
dealer busts and player wins in 1 moves
Game #: 5016
player loses in 1 moves
Game #: 5017
player loses in 2 moves
Game #: 5018
player loses in 1 moves
Game #: 5019
player wins in 1 moves
Game #: 5020
dealer busts and player wins in 1 moves
Game #: 5021
dealer busts and player wins in 1 moves
Game #: 5022
player loses in 2 moves
Game #: 5023
dealer busts and player wins in 1 moves
Game #: 5024
dealer busts and player wins in 1 moves
Game #: 5025
player loses in 1 moves
Game #: 5026
player wins in 0 moves
Game #: 5027
player busts and loses in 1 moves
Game #: 5028
player loses in 1 moves
Game #: 5029
player loses in 2 moves
Game #: 5030
dealer busts and player wins in 1 moves
Game #: 5031
dealer busts and player wins in 1 moves
Game #: 5032
player wins in 1 moves
Game #: 5033
player busts and loses in 1 moves
Game #: 5034
dealer busts and player wins in 2 moves
Game #: 5035
player wins in 2 moves
Game #: 5036
player loses in 1 moves
Game #: 5037
player loses in 1 moves
Game #: 5038
player wins in 1 moves
Game #: 5039
player busts and loses in 1 moves
Game #: 5040
player wins in 1 moves
Game #: 5041
player loses in 1 moves
Game #: 5042
player wins in 0 moves
Game #: 5043
player wins in 0 moves
Game #: 5044
dealer busts and player wins in 1 moves
Game #: 5045
player wins in 1 moves
Game #: 5046
player wins in 1 moves
Game #: 5047
player loses in 2 moves
Game #: 5048
player wins in 1 moves
Game #: 5049
dealer busts and player wins in 1 moves
Game #: 5050
player wins in 1 moves
Game #: 5051
player loses in 1 moves
Game #: 5052
player loses in 1 moves
Game #: 5053
player wins in 0 moves
Game #: 5054
player wins in 1 moves
Game #: 5055
player loses in 1 moves
Game #: 5056
player busts and loses in 1 moves
Game #: 5057
dealer busts and player wins in 1 moves
Game #: 5058
player wins in 1 moves
Game #: 5059
player busts and loses in 1 moves
Game #: 5060
player wins in 0 moves
Game #: 5061
dealer busts and player wins in 2 moves
Game #: 5062
dealer busts and player wins in 1 moves
Game #: 5063
player busts and loses in 1 moves
Game #: 5064
dealer busts and player wins in 1 moves
Game #: 5065
player busts and loses in 3 moves
Game #: 5066
player loses in 1 moves
Game #: 5067
player wins in 1 moves
Game #: 5068
player busts and loses in 1 moves
Game #: 5069
player loses in 2 moves
Game #: 5070
dealer busts and player wins in 1 moves
Game #: 5071
player wins in 1 moves
Game #: 5072
player loses in 1 moves
Game #: 5073
player loses in 1 moves
Game #: 5074
player loses in 1 moves
Game #: 5075
player wins in 2 moves
Game #: 5076
player loses in 2 moves
Game #: 5077
player loses in 1 moves
Game #: 5078
dealer busts and player wins in 2 moves
Game #: 5079
player busts and loses in 2 moves
Game #: 5080
player loses in 1 moves
Game #: 5081
dealer busts and player wins in 1 moves
Game #: 5082
player loses in 1 moves
Game #: 5083
dealer busts and player wins in 1 moves
Game #: 5084
player busts and loses in 1 moves
Game #: 5085
dealer busts and player wins in 1 moves
Game #: 5086
dealer busts and player wins in 1 moves
Game #: 5087
dealer busts and player wins in 2 moves
Game #: 5088
dealer busts and player wins in 1 moves
Game #: 5089
player wins in 1 moves
Game #: 5090
player loses in 1 moves
Game #: 5091
dealer busts and player wins in 2 moves
Game #: 5092
player wins in 1 moves
Game #: 5093
player busts and loses in 1 moves
Game #: 5094
dealer busts and player wins in 1 moves
Game #: 5095
dealer busts and player wins in 1 moves
Game #: 5096
player loses in 2 moves
Game #: 5097
player loses in 1 moves
Game #: 5098
dealer busts and player wins in 1 moves
Game #: 5099
dealer busts and player wins in 2 moves
Game #: 5100
dealer busts and player wins in 1 moves
Game #: 5101
player loses in 1 moves
Game #: 5102
player busts and loses in 1 moves
Game #: 5103
dealer busts and player wins in 2 moves
Game #: 5104
player busts and loses in 1 moves
Game #: 5105
player loses in 1 moves
Game #: 5106
player wins in 2 moves
Game #: 5107
player loses in 1 moves
Game #: 5108
player busts and loses in 2 moves
Game #: 5109
dealer busts and player wins in 1 moves
Game #: 5110
dealer busts and player wins in 2 moves
Game #: 5111
player busts and loses in 1 moves
Game #: 5112
dealer busts and player wins in 2 moves
Game #: 5113
player loses in 1 moves
Game #: 5114
player loses in 1 moves
Game #: 5115
draw in 1 moves
Game #: 5116
player loses in 1 moves
Game #: 5117
player busts and loses in 1 moves
Game #: 5118
player busts and loses in 1 moves
Game #: 5119
dealer busts and player wins in 1 moves
Game #: 5120
player loses in 1 moves
Game #: 5121
player loses in 1 moves
Game #: 5122
player wins in 1 moves
Game #: 5123
player wins in 1 moves
Game #: 5124
player loses in 1 moves
Game #: 5125
player busts and loses in 1 moves
Game #: 5126
player busts and loses in 1 moves
Game #: 5127
player loses in 1 moves
Game #: 5128
player busts and loses in 1 moves
Game #: 5129
dealer busts and player wins in 1 moves
Game #: 5130
dealer busts and player wins in 1 moves
Game #: 5131
player wins in 1 moves
Game #: 5132
dealer busts and player wins in 1 moves
Game #: 5133
player loses in 1 moves
Game #: 5134
dealer busts and player wins in 1 moves
Game #: 5135
player busts and loses in 1 moves
Game #: 5136
player wins in 0 moves
Game #: 5137
player loses in 1 moves
Game #: 5138
player wins in 1 moves
Game #: 5139
player wins in 1 moves
Game #: 5140
player busts and loses in 1 moves
Game #: 5141
player wins in 0 moves
Game #: 5142
dealer busts and player wins in 1 moves
Game #: 5143
dealer busts and player wins in 1 moves
Game #: 5144
player wins in 0 moves
Game #: 5145
player wins in 0 moves
Game #: 5146
player loses in 1 moves
Game #: 5147
dealer busts and player wins in 1 moves
Game #: 5148
dealer busts and player wins in 1 moves
Game #: 5149
draw in 1 moves
Game #: 5150
dealer busts and player wins in 2 moves
Game #: 5151
player wins in 1 moves
Game #: 5152
player loses in 1 moves
Game #: 5153
player wins in 1 moves
Game #: 5154
player loses in 1 moves
Game #: 5155
player busts and loses in 1 moves
Game #: 5156
player busts and loses in 1 moves
Game #: 5157
player busts and loses in 1 moves
Game #: 5158
dealer busts and player wins in 1 moves
Game #: 5159
dealer busts and player wins in 2 moves
Game #: 5160
player wins in 2 moves
Game #: 5161
player wins in 0 moves
Game #: 5162
player busts and loses in 1 moves
Game #: 5163
dealer busts and player wins in 1 moves
Game #: 5164
player wins in 0 moves
Game #: 5165
player wins in 0 moves
Game #: 5166
player busts and loses in 1 moves
Game #: 5167
player wins in 1 moves
Game #: 5168
dealer busts and player wins in 1 moves
Game #: 5169
player loses in 1 moves
Game #: 5170
player loses in 1 moves
Game #: 5171
player loses in 2 moves
Game #: 5172
player loses in 1 moves
Game #: 5173
dealer busts and player wins in 1 moves
Game #: 5174
dealer busts and player wins in 1 moves
Game #: 5175
player wins in 1 moves
Game #: 5176
dealer busts and player wins in 1 moves
Game #: 5177
player busts and loses in 1 moves
Game #: 5178
dealer busts and player wins in 1 moves
Game #: 5179
dealer busts and player wins in 2 moves
Game #: 5180
dealer busts and player wins in 1 moves
Game #: 5181
player loses in 1 moves
Game #: 5182
dealer busts and player wins in 1 moves
Game #: 5183
player loses in 1 moves
Game #: 5184
player busts and loses in 1 moves
Game #: 5185
player busts and loses in 1 moves
Game #: 5186
player wins in 1 moves
Game #: 5187
dealer busts and player wins in 1 moves
Game #: 5188
player loses in 1 moves
Game #: 5189
player wins in 1 moves
Game #: 5190
player wins in 0 moves
Game #: 5191
dealer busts and player wins in 1 moves
Game #: 5192
player busts and loses in 1 moves
Game #: 5193
draw in 2 moves
Game #: 5194
player loses in 1 moves
Game #: 5195
player loses in 1 moves
Game #: 5196
player loses in 1 moves
Game #: 5197
player loses in 1 moves
Game #: 5198
player loses in 1 moves
Game #: 5199
player busts and loses in 1 moves
Game #: 5200
player wins in 1 moves
Game #: 5201
player loses in 1 moves
Game #: 5202
player busts and loses in 2 moves
Game #: 5203
player busts and loses in 1 moves
Game #: 5204
player loses in 2 moves
Game #: 5205
player wins in 1 moves
Game #: 5206
player busts and loses in 2 moves
Game #: 5207
player loses in 1 moves
Game #: 5208
player loses in 1 moves
Game #: 5209
player wins in 1 moves
Game #: 5210
dealer busts and player wins in 1 moves
Game #: 5211
player busts and loses in 1 moves
Game #: 5212
player wins in 1 moves
Game #: 5213
draw in 1 moves
Game #: 5214
player wins in 0 moves
Game #: 5215
dealer busts and player wins in 1 moves
Game #: 5216
player loses in 1 moves
Game #: 5217
dealer busts and player wins in 1 moves
Game #: 5218
player busts and loses in 1 moves
Game #: 5219
player busts and loses in 1 moves
Game #: 5220
player busts and loses in 1 moves
Game #: 5221
draw in 1 moves
Game #: 5222
player busts and loses in 1 moves
Game #: 5223
draw in 1 moves
Game #: 5224
dealer busts and player wins in 1 moves
Game #: 5225
player loses in 1 moves
Game #: 5226
player loses in 3 moves
Game #: 5227
dealer busts and player wins in 1 moves
Game #: 5228
player loses in 1 moves
Game #: 5229
draw in 1 moves
Game #: 5230
player loses in 1 moves
Game #: 5231
dealer busts and player wins in 1 moves
Game #: 5232
player wins in 0 moves
Game #: 5233
dealer busts and player wins in 1 moves
Game #: 5234
dealer busts and player wins in 1 moves
Game #: 5235
draw in 1 moves
Game #: 5236
draw in 2 moves
Game #: 5237
player loses in 1 moves
Game #: 5238
player loses in 1 moves
Game #: 5239
dealer busts and player wins in 1 moves
Game #: 5240
player loses in 2 moves
Game #: 5241
player loses in 1 moves
Game #: 5242
dealer busts and player wins in 1 moves
Game #: 5243
player busts and loses in 1 moves
Game #: 5244
player wins in 1 moves
Game #: 5245
player loses in 1 moves
Game #: 5246
player loses in 1 moves
Game #: 5247
player wins in 1 moves
Game #: 5248
player loses in 1 moves
Game #: 5249
player wins in 2 moves
Game #: 5250
player loses in 1 moves
Game #: 5251
player loses in 1 moves
Game #: 5252
player loses in 1 moves
Game #: 5253
player loses in 1 moves
Game #: 5254
player wins in 1 moves
Game #: 5255
player loses in 2 moves
Game #: 5256
player wins in 0 moves
Game #: 5257
dealer busts and player wins in 2 moves
Game #: 5258
player wins in 0 moves
Game #: 5259
player loses in 1 moves
Game #: 5260
draw in 1 moves
Game #: 5261
dealer busts and player wins in 1 moves
Game #: 5262
player loses in 1 moves
Game #: 5263
player loses in 1 moves
Game #: 5264
player loses in 1 moves
Game #: 5265
player wins in 1 moves
Game #: 5266
player loses in 1 moves
Game #: 5267
player wins in 0 moves
Game #: 5268
player loses in 1 moves
Game #: 5269
dealer busts and player wins in 1 moves
Game #: 5270
dealer busts and player wins in 1 moves
Game #: 5271
player wins in 0 moves
Game #: 5272
player loses in 1 moves
Game #: 5273
player loses in 2 moves
Game #: 5274
player loses in 1 moves
Game #: 5275
player wins in 1 moves
Game #: 5276
player busts and loses in 1 moves
Game #: 5277
player busts and loses in 1 moves
Game #: 5278
player loses in 1 moves
Game #: 5279
player loses in 1 moves
Game #: 5280
dealer busts and player wins in 1 moves
Game #: 5281
dealer busts and player wins in 1 moves
Game #: 5282
player wins in 0 moves
Game #: 5283
player loses in 1 moves
Game #: 5284
player wins in 1 moves
Game #: 5285
dealer busts and player wins in 2 moves
Game #: 5286
player loses in 1 moves
Game #: 5287
draw in 1 moves
Game #: 5288
player loses in 1 moves
Game #: 5289
player loses in 1 moves
Game #: 5290
player loses in 1 moves
Game #: 5291
player loses in 1 moves
Game #: 5292
dealer busts and player wins in 1 moves
Game #: 5293
dealer busts and player wins in 1 moves
Game #: 5294
player loses in 3 moves
Game #: 5295
draw in 1 moves
Game #: 5296
player loses in 1 moves
Game #: 5297
player loses in 2 moves
Game #: 5298
player busts and loses in 1 moves
Game #: 5299
player wins in 1 moves
Game #: 5300
player loses in 1 moves
Game #: 5301
player loses in 1 moves
Game #: 5302
dealer busts and player wins in 1 moves
Game #: 5303
player busts and loses in 1 moves
Game #: 5304
dealer busts and player wins in 1 moves
Game #: 5305
draw in 1 moves
Game #: 5306
player busts and loses in 1 moves
Game #: 5307
player loses in 1 moves
Game #: 5308
dealer busts and player wins in 1 moves
Game #: 5309
dealer busts and player wins in 1 moves
Game #: 5310
player loses in 2 moves
Game #: 5311
dealer busts and player wins in 1 moves
Game #: 5312
player busts and loses in 1 moves
Game #: 5313
dealer busts and player wins in 1 moves
Game #: 5314
player busts and loses in 1 moves
Game #: 5315
player busts and loses in 2 moves
Game #: 5316
player wins in 2 moves
Game #: 5317
player wins in 1 moves
Game #: 5318
draw in 1 moves
Game #: 5319
player loses in 2 moves
Game #: 5320
player loses in 1 moves
Game #: 5321
player busts and loses in 1 moves
Game #: 5322
player loses in 1 moves
Game #: 5323
player busts and loses in 2 moves
Game #: 5324
player wins in 1 moves
Game #: 5325
player wins in 1 moves
Game #: 5326
player wins in 0 moves
Game #: 5327
dealer busts and player wins in 1 moves
Game #: 5328
player loses in 1 moves
Game #: 5329
player wins in 0 moves
Game #: 5330
player loses in 1 moves
Game #: 5331
player wins in 0 moves
Game #: 5332
player loses in 1 moves
Game #: 5333
player busts and loses in 1 moves
Game #: 5334
player loses in 2 moves
Game #: 5335
dealer busts and player wins in 1 moves
Game #: 5336
player loses in 2 moves
Game #: 5337
player busts and loses in 1 moves
Game #: 5338
dealer busts and player wins in 1 moves
Game #: 5339
player loses in 1 moves
Game #: 5340
player busts and loses in 1 moves
Game #: 5341
player busts and loses in 2 moves
Game #: 5342
player busts and loses in 1 moves
Game #: 5343
dealer busts and player wins in 2 moves
Game #: 5344
player wins in 0 moves
Game #: 5345
player busts and loses in 1 moves
Game #: 5346
player wins in 0 moves
Game #: 5347
dealer busts and player wins in 1 moves
Game #: 5348
dealer busts and player wins in 1 moves
Game #: 5349
dealer busts and player wins in 1 moves
Game #: 5350
dealer busts and player wins in 1 moves
Game #: 5351
dealer busts and player wins in 1 moves
Game #: 5352
player loses in 1 moves
Game #: 5353
dealer busts and player wins in 1 moves
Game #: 5354
dealer busts and player wins in 1 moves
Game #: 5355
player wins in 1 moves
Game #: 5356
dealer busts and player wins in 1 moves
Game #: 5357
dealer busts and player wins in 1 moves
Game #: 5358
player busts and loses in 2 moves
Game #: 5359
dealer busts and player wins in 1 moves
Game #: 5360
dealer busts and player wins in 1 moves
Game #: 5361
player loses in 1 moves
Game #: 5362
player busts and loses in 2 moves
Game #: 5363
player busts and loses in 1 moves
Game #: 5364
player loses in 1 moves
Game #: 5365
player loses in 1 moves
Game #: 5366
player loses in 1 moves
Game #: 5367
dealer busts and player wins in 1 moves
Game #: 5368
player loses in 1 moves
Game #: 5369
player loses in 1 moves
Game #: 5370
draw in 1 moves
Game #: 5371
player wins in 1 moves
Game #: 5372
player busts and loses in 1 moves
Game #: 5373
player wins in 1 moves
Game #: 5374
player busts and loses in 1 moves
Game #: 5375
player loses in 2 moves
Game #: 5376
player wins in 1 moves
Game #: 5377
player loses in 1 moves
Game #: 5378
player busts and loses in 2 moves
Game #: 5379
player loses in 1 moves
Game #: 5380
player wins in 1 moves
Game #: 5381
player wins in 1 moves
Game #: 5382
player loses in 1 moves
Game #: 5383
player loses in 1 moves
Game #: 5384
dealer busts and player wins in 1 moves
Game #: 5385
draw in 1 moves
Game #: 5386
player wins in 0 moves
Game #: 5387
dealer busts and player wins in 1 moves
Game #: 5388
dealer busts and player wins in 1 moves
Game #: 5389
player busts and loses in 1 moves
Game #: 5390
player loses in 1 moves
Game #: 5391
player loses in 1 moves
Game #: 5392
dealer busts and player wins in 1 moves
Game #: 5393
player loses in 1 moves
Game #: 5394
player busts and loses in 1 moves
Game #: 5395
player busts and loses in 1 moves
Game #: 5396
player loses in 2 moves
Game #: 5397
player loses in 1 moves
Game #: 5398
player wins in 1 moves
Game #: 5399
player loses in 1 moves
Game #: 5400
player wins in 1 moves
Game #: 5401
player busts and loses in 2 moves
Game #: 5402
player loses in 1 moves
Game #: 5403
player wins in 2 moves
Game #: 5404
dealer busts and player wins in 1 moves
Game #: 5405
player wins in 0 moves
Game #: 5406
draw in 1 moves
Game #: 5407
player loses in 1 moves
Game #: 5408
player busts and loses in 1 moves
Game #: 5409
player loses in 1 moves
Game #: 5410
player busts and loses in 1 moves
Game #: 5411
dealer busts and player wins in 1 moves
Game #: 5412
player busts and loses in 1 moves
Game #: 5413
draw in 1 moves
Game #: 5414
player loses in 1 moves
Game #: 5415
dealer busts and player wins in 1 moves
Game #: 5416
player loses in 1 moves
Game #: 5417
dealer busts and player wins in 1 moves
Game #: 5418
player loses in 2 moves
Game #: 5419
player loses in 1 moves
Game #: 5420
dealer busts and player wins in 1 moves
Game #: 5421
player loses in 1 moves
Game #: 5422
player loses in 1 moves
Game #: 5423
player wins in 0 moves
Game #: 5424
player loses in 1 moves
Game #: 5425
player busts and loses in 1 moves
Game #: 5426
player busts and loses in 1 moves
Game #: 5427
dealer busts and player wins in 2 moves
Game #: 5428
dealer busts and player wins in 1 moves
Game #: 5429
player wins in 1 moves
Game #: 5430
player wins in 1 moves
Game #: 5431
draw in 2 moves
Game #: 5432
player loses in 1 moves
Game #: 5433
player busts and loses in 1 moves
Game #: 5434
player loses in 1 moves
Game #: 5435
player busts and loses in 1 moves
Game #: 5436
player loses in 1 moves
Game #: 5437
dealer busts and player wins in 1 moves
Game #: 5438
player busts and loses in 1 moves
Game #: 5439
player busts and loses in 1 moves
Game #: 5440
player wins in 1 moves
Game #: 5441
player loses in 1 moves
Game #: 5442
dealer busts and player wins in 1 moves
Game #: 5443
player busts and loses in 1 moves
Game #: 5444
player wins in 1 moves
Game #: 5445
player busts and loses in 1 moves
Game #: 5446
player busts and loses in 2 moves
Game #: 5447
player loses in 1 moves
Game #: 5448
player busts and loses in 2 moves
Game #: 5449
player wins in 1 moves
Game #: 5450
player wins in 1 moves
Game #: 5451
dealer busts and player wins in 1 moves
Game #: 5452
draw in 1 moves
Game #: 5453
player loses in 1 moves
Game #: 5454
player wins in 0 moves
Game #: 5455
player wins in 0 moves
Game #: 5456
player loses in 2 moves
Game #: 5457
player loses in 1 moves
Game #: 5458
player loses in 1 moves
Game #: 5459
player loses in 2 moves
Game #: 5460
player loses in 1 moves
Game #: 5461
player wins in 2 moves
Game #: 5462
player busts and loses in 2 moves
Game #: 5463
player loses in 1 moves
Game #: 5464
player loses in 1 moves
Game #: 5465
player loses in 1 moves
Game #: 5466
player wins in 1 moves
Game #: 5467
player loses in 1 moves
Game #: 5468
player wins in 1 moves
Game #: 5469
player wins in 0 moves
Game #: 5470
dealer busts and player wins in 1 moves
Game #: 5471
player loses in 2 moves
Game #: 5472
player loses in 1 moves
Game #: 5473
player loses in 1 moves
Game #: 5474
player wins in 0 moves
Game #: 5475
player loses in 1 moves
Game #: 5476
player wins in 3 moves
Game #: 5477
player loses in 1 moves
Game #: 5478
player loses in 1 moves
Game #: 5479
player busts and loses in 1 moves
Game #: 5480
draw in 1 moves
Game #: 5481
dealer busts and player wins in 1 moves
Game #: 5482
player loses in 1 moves
Game #: 5483
player wins in 0 moves
Game #: 5484
player wins in 0 moves
Game #: 5485
player busts and loses in 1 moves
Game #: 5486
player loses in 1 moves
Game #: 5487
player loses in 2 moves
Game #: 5488
player busts and loses in 1 moves
Game #: 5489
player loses in 1 moves
Game #: 5490
player wins in 0 moves
Game #: 5491
player loses in 1 moves
Game #: 5492
player wins in 1 moves
Game #: 5493
player busts and loses in 1 moves
Game #: 5494
draw in 1 moves
Game #: 5495
draw in 1 moves
Game #: 5496
player loses in 1 moves
Game #: 5497
player busts and loses in 1 moves
Game #: 5498
player busts and loses in 1 moves
Game #: 5499
dealer busts and player wins in 2 moves
Game #: 5500
player loses in 1 moves
Game #: 5501
player loses in 1 moves
Game #: 5502
player loses in 1 moves
Game #: 5503
player loses in 1 moves
Game #: 5504
player loses in 2 moves
Game #: 5505
dealer busts and player wins in 1 moves
Game #: 5506
player loses in 1 moves
Game #: 5507
player wins in 1 moves
Game #: 5508
dealer busts and player wins in 1 moves
Game #: 5509
player loses in 1 moves
Game #: 5510
player wins in 0 moves
Game #: 5511
player loses in 1 moves
Game #: 5512
dealer busts and player wins in 3 moves
Game #: 5513
player busts and loses in 2 moves
Game #: 5514
dealer busts and player wins in 1 moves
Game #: 5515
dealer busts and player wins in 3 moves
Game #: 5516
player busts and loses in 1 moves
Game #: 5517
player wins in 0 moves
Game #: 5518
draw in 2 moves
Game #: 5519
player busts and loses in 1 moves
Game #: 5520
player busts and loses in 1 moves
Game #: 5521
player busts and loses in 1 moves
Game #: 5522
draw in 2 moves
Game #: 5523
dealer busts and player wins in 1 moves
Game #: 5524
player loses in 1 moves
Game #: 5525
player loses in 1 moves
Game #: 5526
player wins in 0 moves
Game #: 5527
draw in 1 moves
Game #: 5528
player busts and loses in 1 moves
Game #: 5529
dealer busts and player wins in 1 moves
Game #: 5530
player loses in 1 moves
Game #: 5531
dealer busts and player wins in 1 moves
Game #: 5532
player wins in 1 moves
Game #: 5533
dealer busts and player wins in 1 moves
Game #: 5534
dealer busts and player wins in 1 moves
Game #: 5535
player busts and loses in 1 moves
Game #: 5536
player busts and loses in 1 moves
Game #: 5537
draw in 1 moves
Game #: 5538
player wins in 1 moves
Game #: 5539
player wins in 1 moves
Game #: 5540
player busts and loses in 3 moves
Game #: 5541
draw in 1 moves
Game #: 5542
player busts and loses in 1 moves
Game #: 5543
player wins in 0 moves
Game #: 5544
player busts and loses in 1 moves
Game #: 5545
player wins in 0 moves
Game #: 5546
player loses in 2 moves
Game #: 5547
draw in 1 moves
Game #: 5548
player loses in 1 moves
Game #: 5549
player busts and loses in 1 moves
Game #: 5550
dealer busts and player wins in 1 moves
Game #: 5551
player wins in 1 moves
Game #: 5552
player loses in 1 moves
Game #: 5553
player loses in 1 moves
Game #: 5554
player loses in 1 moves
Game #: 5555
dealer busts and player wins in 1 moves
Game #: 5556
player wins in 0 moves
Game #: 5557
player loses in 1 moves
Game #: 5558
player loses in 1 moves
Game #: 5559
dealer busts and player wins in 2 moves
Game #: 5560
player loses in 1 moves
Game #: 5561
player wins in 0 moves
Game #: 5562
player wins in 1 moves
Game #: 5563
player busts and loses in 1 moves
Game #: 5564
player wins in 1 moves
Game #: 5565
player wins in 2 moves
Game #: 5566
player wins in 0 moves
Game #: 5567
player loses in 1 moves
Game #: 5568
dealer busts and player wins in 1 moves
Game #: 5569
player loses in 1 moves
Game #: 5570
player loses in 1 moves
Game #: 5571
dealer busts and player wins in 2 moves
Game #: 5572
dealer busts and player wins in 1 moves
Game #: 5573
player loses in 1 moves
Game #: 5574
player wins in 0 moves
Game #: 5575
draw in 2 moves
Game #: 5576
player busts and loses in 1 moves
Game #: 5577
player loses in 1 moves
Game #: 5578
player loses in 1 moves
Game #: 5579
player busts and loses in 1 moves
Game #: 5580
player loses in 1 moves
Game #: 5581
player busts and loses in 1 moves
Game #: 5582
dealer busts and player wins in 1 moves
Game #: 5583
dealer busts and player wins in 1 moves
Game #: 5584
player loses in 1 moves
Game #: 5585
player busts and loses in 2 moves
Game #: 5586
player loses in 1 moves
Game #: 5587
player loses in 1 moves
Game #: 5588
player wins in 1 moves
Game #: 5589
player wins in 1 moves
Game #: 5590
player loses in 1 moves
Game #: 5591
player loses in 1 moves
Game #: 5592
player wins in 0 moves
Game #: 5593
player wins in 1 moves
Game #: 5594
player loses in 1 moves
Game #: 5595
player loses in 1 moves
Game #: 5596
player loses in 1 moves
Game #: 5597
player loses in 1 moves
Game #: 5598
player busts and loses in 1 moves
Game #: 5599
player loses in 1 moves
Game #: 5600
player wins in 1 moves
Game #: 5601
draw in 1 moves
Game #: 5602
player wins in 1 moves
Game #: 5603
player loses in 1 moves
Game #: 5604
dealer busts and player wins in 1 moves
Game #: 5605
player loses in 1 moves
Game #: 5606
dealer busts and player wins in 2 moves
Game #: 5607
dealer busts and player wins in 1 moves
Game #: 5608
player busts and loses in 1 moves
Game #: 5609
draw in 1 moves
Game #: 5610
dealer busts and player wins in 1 moves
Game #: 5611
player loses in 1 moves
Game #: 5612
dealer busts and player wins in 2 moves
Game #: 5613
player wins in 1 moves
Game #: 5614
player loses in 1 moves
Game #: 5615
player loses in 2 moves
Game #: 5616
player loses in 1 moves
Game #: 5617
player busts and loses in 1 moves
Game #: 5618
dealer busts and player wins in 1 moves
Game #: 5619
dealer busts and player wins in 2 moves
Game #: 5620
player wins in 1 moves
Game #: 5621
player wins in 1 moves
Game #: 5622
player loses in 1 moves
Game #: 5623
player wins in 1 moves
Game #: 5624
dealer busts and player wins in 1 moves
Game #: 5625
player busts and loses in 1 moves
Game #: 5626
player loses in 2 moves
Game #: 5627
player loses in 1 moves
Game #: 5628
player loses in 1 moves
Game #: 5629
player loses in 1 moves
Game #: 5630
player loses in 1 moves
Game #: 5631
dealer busts and player wins in 1 moves
Game #: 5632
player loses in 1 moves
Game #: 5633
dealer busts and player wins in 1 moves
Game #: 5634
player busts and loses in 1 moves
Game #: 5635
player busts and loses in 1 moves
Game #: 5636
player busts and loses in 1 moves
Game #: 5637
player busts and loses in 1 moves
Game #: 5638
player wins in 1 moves
Game #: 5639
player wins in 3 moves
Game #: 5640
player wins in 1 moves
Game #: 5641
player wins in 1 moves
Game #: 5642
player wins in 1 moves
Game #: 5643
player busts and loses in 2 moves
Game #: 5644
player loses in 1 moves
Game #: 5645
dealer busts and player wins in 1 moves
Game #: 5646
player wins in 1 moves
Game #: 5647
draw in 1 moves
Game #: 5648
player loses in 2 moves
Game #: 5649
player loses in 1 moves
Game #: 5650
draw in 1 moves
Game #: 5651
player wins in 0 moves
Game #: 5652
player busts and loses in 1 moves
Game #: 5653
player loses in 2 moves
Game #: 5654
player busts and loses in 1 moves
Game #: 5655
player loses in 1 moves
Game #: 5656
player loses in 1 moves
Game #: 5657
player wins in 1 moves
Game #: 5658
player wins in 0 moves
Game #: 5659
player wins in 0 moves
Game #: 5660
player busts and loses in 1 moves
Game #: 5661
player busts and loses in 1 moves
Game #: 5662
draw in 2 moves
Game #: 5663
player loses in 1 moves
Game #: 5664
player loses in 1 moves
Game #: 5665
player loses in 1 moves
Game #: 5666
player loses in 1 moves
Game #: 5667
player busts and loses in 1 moves
Game #: 5668
player busts and loses in 1 moves
Game #: 5669
player busts and loses in 1 moves
Game #: 5670
player busts and loses in 1 moves
Game #: 5671
player wins in 1 moves
Game #: 5672
player wins in 0 moves
Game #: 5673
player loses in 1 moves
Game #: 5674
dealer busts and player wins in 1 moves
Game #: 5675
player loses in 1 moves
Game #: 5676
player loses in 1 moves
Game #: 5677
player busts and loses in 2 moves
Game #: 5678
player loses in 1 moves
Game #: 5679
player loses in 1 moves
Game #: 5680
player busts and loses in 1 moves
Game #: 5681
player busts and loses in 1 moves
Game #: 5682
dealer busts and player wins in 1 moves
Game #: 5683
player wins in 1 moves
Game #: 5684
draw in 2 moves
Game #: 5685
dealer busts and player wins in 1 moves
Game #: 5686
player wins in 0 moves
Game #: 5687
draw in 1 moves
Game #: 5688
player busts and loses in 1 moves
Game #: 5689
dealer busts and player wins in 1 moves
Game #: 5690
player loses in 2 moves
Game #: 5691
player busts and loses in 1 moves
Game #: 5692
player wins in 0 moves
Game #: 5693
player loses in 2 moves
Game #: 5694
dealer busts and player wins in 1 moves
Game #: 5695
dealer busts and player wins in 1 moves
Game #: 5696
player loses in 1 moves
Game #: 5697
player loses in 1 moves
Game #: 5698
player wins in 1 moves
Game #: 5699
dealer busts and player wins in 1 moves
Game #: 5700
player loses in 2 moves
Game #: 5701
dealer busts and player wins in 1 moves
Game #: 5702
player loses in 1 moves
Game #: 5703
player wins in 1 moves
Game #: 5704
dealer busts and player wins in 1 moves
Game #: 5705
player busts and loses in 1 moves
Game #: 5706
player wins in 0 moves
Game #: 5707
player wins in 1 moves
Game #: 5708
draw in 1 moves
Game #: 5709
player loses in 1 moves
Game #: 5710
dealer busts and player wins in 1 moves
Game #: 5711
dealer busts and player wins in 1 moves
Game #: 5712
player loses in 1 moves
Game #: 5713
player loses in 1 moves
Game #: 5714
player loses in 1 moves
Game #: 5715
player wins in 1 moves
Game #: 5716
player busts and loses in 2 moves
Game #: 5717
player wins in 1 moves
Game #: 5718
dealer busts and player wins in 1 moves
Game #: 5719
dealer busts and player wins in 1 moves
Game #: 5720
dealer busts and player wins in 1 moves
Game #: 5721
player busts and loses in 1 moves
Game #: 5722
player wins in 1 moves
Game #: 5723
player wins in 0 moves
Game #: 5724
player wins in 0 moves
Game #: 5725
player loses in 1 moves
Game #: 5726
player wins in 2 moves
Game #: 5727
player wins in 1 moves
Game #: 5728
player busts and loses in 1 moves
Game #: 5729
player loses in 2 moves
Game #: 5730
draw in 1 moves
Game #: 5731
player loses in 1 moves
Game #: 5732
player wins in 1 moves
Game #: 5733
dealer busts and player wins in 1 moves
Game #: 5734
player wins in 2 moves
Game #: 5735
player busts and loses in 1 moves
Game #: 5736
player wins in 1 moves
Game #: 5737
player busts and loses in 1 moves
Game #: 5738
player loses in 1 moves
Game #: 5739
dealer busts and player wins in 1 moves
Game #: 5740
player loses in 1 moves
Game #: 5741
player busts and loses in 1 moves
Game #: 5742
player busts and loses in 1 moves
Game #: 5743
player wins in 1 moves
Game #: 5744
player busts and loses in 1 moves
Game #: 5745
dealer busts and player wins in 1 moves
Game #: 5746
dealer busts and player wins in 1 moves
Game #: 5747
player loses in 1 moves
Game #: 5748
player loses in 1 moves
Game #: 5749
dealer busts and player wins in 2 moves
Game #: 5750
player loses in 2 moves
Game #: 5751
dealer busts and player wins in 1 moves
Game #: 5752
dealer busts and player wins in 1 moves
Game #: 5753
player wins in 0 moves
Game #: 5754
draw in 1 moves
Game #: 5755
player wins in 2 moves
Game #: 5756
player loses in 1 moves
Game #: 5757
dealer busts and player wins in 1 moves
Game #: 5758
player wins in 0 moves
Game #: 5759
player busts and loses in 2 moves
Game #: 5760
player loses in 1 moves
Game #: 5761
player wins in 0 moves
Game #: 5762
dealer busts and player wins in 1 moves
Game #: 5763
player wins in 2 moves
Game #: 5764
player loses in 1 moves
Game #: 5765
player wins in 0 moves
Game #: 5766
player loses in 2 moves
Game #: 5767
player busts and loses in 1 moves
Game #: 5768
dealer busts and player wins in 1 moves
Game #: 5769
player loses in 1 moves
Game #: 5770
player loses in 1 moves
Game #: 5771
dealer busts and player wins in 2 moves
Game #: 5772
player loses in 1 moves
Game #: 5773
player loses in 1 moves
Game #: 5774
player wins in 0 moves
Game #: 5775
player busts and loses in 1 moves
Game #: 5776
player loses in 1 moves
Game #: 5777
player wins in 1 moves
Game #: 5778
player busts and loses in 1 moves
Game #: 5779
player wins in 1 moves
Game #: 5780
dealer busts and player wins in 1 moves
Game #: 5781
player loses in 1 moves
Game #: 5782
player loses in 1 moves
Game #: 5783
player loses in 2 moves
Game #: 5784
player wins in 3 moves
Game #: 5785
player busts and loses in 1 moves
Game #: 5786
player busts and loses in 1 moves
Game #: 5787
player loses in 1 moves
Game #: 5788
player busts and loses in 1 moves
Game #: 5789
dealer busts and player wins in 1 moves
Game #: 5790
dealer busts and player wins in 1 moves
Game #: 5791
player loses in 1 moves
Game #: 5792
dealer busts and player wins in 1 moves
Game #: 5793
player busts and loses in 1 moves
Game #: 5794
player loses in 2 moves
Game #: 5795
player wins in 1 moves
Game #: 5796
player wins in 2 moves
Game #: 5797
player loses in 1 moves
Game #: 5798
player wins in 1 moves
Game #: 5799
dealer busts and player wins in 1 moves
Game #: 5800
player wins in 0 moves
Game #: 5801
dealer busts and player wins in 1 moves
Game #: 5802
dealer busts and player wins in 1 moves
Game #: 5803
player wins in 0 moves
Game #: 5804
player wins in 1 moves
Game #: 5805
player wins in 2 moves
Game #: 5806
player wins in 1 moves
Game #: 5807
dealer busts and player wins in 1 moves
Game #: 5808
player loses in 1 moves
Game #: 5809
dealer busts and player wins in 1 moves
Game #: 5810
player wins in 0 moves
Game #: 5811
dealer busts and player wins in 1 moves
Game #: 5812
player loses in 1 moves
Game #: 5813
dealer busts and player wins in 1 moves
Game #: 5814
player busts and loses in 1 moves
Game #: 5815
player loses in 2 moves
Game #: 5816
player busts and loses in 1 moves
Game #: 5817
dealer busts and player wins in 1 moves
Game #: 5818
draw in 1 moves
Game #: 5819
player wins in 1 moves
Game #: 5820
draw in 2 moves
Game #: 5821
player busts and loses in 1 moves
Game #: 5822
dealer busts and player wins in 1 moves
Game #: 5823
dealer busts and player wins in 1 moves
Game #: 5824
dealer busts and player wins in 1 moves
Game #: 5825
player wins in 1 moves
Game #: 5826
player busts and loses in 1 moves
Game #: 5827
player loses in 1 moves
Game #: 5828
player wins in 0 moves
Game #: 5829
player busts and loses in 1 moves
Game #: 5830
dealer busts and player wins in 1 moves
Game #: 5831
dealer busts and player wins in 1 moves
Game #: 5832
player loses in 1 moves
Game #: 5833
player busts and loses in 1 moves
Game #: 5834
dealer busts and player wins in 1 moves
Game #: 5835
player wins in 1 moves
Game #: 5836
player loses in 1 moves
Game #: 5837
player wins in 1 moves
Game #: 5838
player loses in 1 moves
Game #: 5839
player busts and loses in 2 moves
Game #: 5840
player wins in 1 moves
Game #: 5841
dealer busts and player wins in 2 moves
Game #: 5842
player wins in 1 moves
Game #: 5843
player loses in 1 moves
Game #: 5844
player wins in 1 moves
Game #: 5845
player loses in 1 moves
Game #: 5846
player wins in 0 moves
Game #: 5847
player busts and loses in 1 moves
Game #: 5848
player loses in 1 moves
Game #: 5849
player wins in 0 moves
Game #: 5850
player wins in 0 moves
Game #: 5851
player loses in 1 moves
Game #: 5852
dealer busts and player wins in 1 moves
Game #: 5853
player wins in 1 moves
Game #: 5854
player loses in 1 moves
Game #: 5855
draw in 1 moves
Game #: 5856
player busts and loses in 1 moves
Game #: 5857
player busts and loses in 1 moves
Game #: 5858
player wins in 1 moves
Game #: 5859
player wins in 1 moves
Game #: 5860
dealer busts and player wins in 1 moves
Game #: 5861
player wins in 0 moves
Game #: 5862
dealer busts and player wins in 1 moves
Game #: 5863
player loses in 2 moves
Game #: 5864
dealer busts and player wins in 1 moves
Game #: 5865
player busts and loses in 1 moves
Game #: 5866
dealer busts and player wins in 1 moves
Game #: 5867
player loses in 1 moves
Game #: 5868
dealer busts and player wins in 2 moves
Game #: 5869
dealer busts and player wins in 1 moves
Game #: 5870
dealer busts and player wins in 2 moves
Game #: 5871
player wins in 1 moves
Game #: 5872
draw in 2 moves
Game #: 5873
dealer busts and player wins in 1 moves
Game #: 5874
player wins in 1 moves
Game #: 5875
player loses in 2 moves
Game #: 5876
player loses in 1 moves
Game #: 5877
player loses in 2 moves
Game #: 5878
player loses in 1 moves
Game #: 5879
player loses in 1 moves
Game #: 5880
player busts and loses in 1 moves
Game #: 5881
dealer busts and player wins in 2 moves
Game #: 5882
player busts and loses in 2 moves
Game #: 5883
player wins in 1 moves
Game #: 5884
player loses in 1 moves
Game #: 5885
player loses in 1 moves
Game #: 5886
player wins in 0 moves
Game #: 5887
player loses in 1 moves
Game #: 5888
player loses in 1 moves
Game #: 5889
player wins in 2 moves
Game #: 5890
player loses in 1 moves
Game #: 5891
player loses in 1 moves
Game #: 5892
player busts and loses in 1 moves
Game #: 5893
player loses in 1 moves
Game #: 5894
player busts and loses in 1 moves
Game #: 5895
player loses in 1 moves
Game #: 5896
player wins in 0 moves
Game #: 5897
player loses in 1 moves
Game #: 5898
player loses in 1 moves
Game #: 5899
player wins in 1 moves
Game #: 5900
player busts and loses in 1 moves
Game #: 5901
player loses in 1 moves
Game #: 5902
player busts and loses in 1 moves
Game #: 5903
player loses in 1 moves
Game #: 5904
dealer busts and player wins in 1 moves
Game #: 5905
player loses in 3 moves
Game #: 5906
player loses in 1 moves
Game #: 5907
player loses in 1 moves
Game #: 5908
player wins in 1 moves
Game #: 5909
dealer busts and player wins in 1 moves
Game #: 5910
player loses in 2 moves
Game #: 5911
player busts and loses in 1 moves
Game #: 5912
dealer busts and player wins in 2 moves
Game #: 5913
player wins in 0 moves
Game #: 5914
player loses in 1 moves
Game #: 5915
player busts and loses in 1 moves
Game #: 5916
player wins in 1 moves
Game #: 5917
player loses in 2 moves
Game #: 5918
player busts and loses in 1 moves
Game #: 5919
dealer busts and player wins in 1 moves
Game #: 5920
player busts and loses in 1 moves
Game #: 5921
player busts and loses in 1 moves
Game #: 5922
player loses in 1 moves
Game #: 5923
dealer busts and player wins in 1 moves
Game #: 5924
player wins in 0 moves
Game #: 5925
dealer busts and player wins in 1 moves
Game #: 5926
player loses in 1 moves
Game #: 5927
player loses in 1 moves
Game #: 5928
player busts and loses in 1 moves
Game #: 5929
player loses in 1 moves
Game #: 5930
dealer busts and player wins in 1 moves
Game #: 5931
player wins in 1 moves
Game #: 5932
dealer busts and player wins in 2 moves
Game #: 5933
dealer busts and player wins in 1 moves
Game #: 5934
player wins in 1 moves
Game #: 5935
dealer busts and player wins in 1 moves
Game #: 5936
player loses in 1 moves
Game #: 5937
player loses in 1 moves
Game #: 5938
player busts and loses in 1 moves
Game #: 5939
player wins in 0 moves
Game #: 5940
player busts and loses in 1 moves
Game #: 5941
player busts and loses in 1 moves
Game #: 5942
dealer busts and player wins in 1 moves
Game #: 5943
player busts and loses in 1 moves
Game #: 5944
dealer busts and player wins in 2 moves
Game #: 5945
player busts and loses in 1 moves
Game #: 5946
player busts and loses in 2 moves
Game #: 5947
player loses in 1 moves
Game #: 5948
player busts and loses in 2 moves
Game #: 5949
player loses in 1 moves
Game #: 5950
dealer busts and player wins in 1 moves
Game #: 5951
player loses in 1 moves
Game #: 5952
dealer busts and player wins in 1 moves
Game #: 5953
dealer busts and player wins in 1 moves
Game #: 5954
player wins in 0 moves
Game #: 5955
player wins in 1 moves
Game #: 5956
dealer busts and player wins in 1 moves
Game #: 5957
dealer busts and player wins in 1 moves
Game #: 5958
player busts and loses in 1 moves
Game #: 5959
player loses in 2 moves
Game #: 5960
player loses in 1 moves
Game #: 5961
player busts and loses in 1 moves
Game #: 5962
player loses in 1 moves
Game #: 5963
player busts and loses in 1 moves
Game #: 5964
draw in 2 moves
Game #: 5965
dealer busts and player wins in 1 moves
Game #: 5966
player wins in 1 moves
Game #: 5967
dealer busts and player wins in 2 moves
Game #: 5968
player loses in 1 moves
Game #: 5969
player loses in 2 moves
Game #: 5970
player busts and loses in 1 moves
Game #: 5971
player loses in 1 moves
Game #: 5972
player wins in 1 moves
Game #: 5973
player wins in 1 moves
Game #: 5974
player wins in 0 moves
Game #: 5975
player loses in 1 moves
Game #: 5976
player busts and loses in 1 moves
Game #: 5977
dealer busts and player wins in 2 moves
Game #: 5978
player wins in 1 moves
Game #: 5979
player wins in 2 moves
Game #: 5980
player busts and loses in 1 moves
Game #: 5981
player busts and loses in 1 moves
Game #: 5982
player busts and loses in 1 moves
Game #: 5983
player loses in 1 moves
Game #: 5984
dealer busts and player wins in 1 moves
Game #: 5985
player loses in 1 moves
Game #: 5986
player wins in 1 moves
Game #: 5987
dealer busts and player wins in 1 moves
Game #: 5988
player busts and loses in 1 moves
Game #: 5989
draw in 1 moves
Game #: 5990
player loses in 1 moves
Game #: 5991
player wins in 2 moves
Game #: 5992
player loses in 1 moves
Game #: 5993
player loses in 1 moves
Game #: 5994
player busts and loses in 1 moves
Game #: 5995
player wins in 0 moves
Game #: 5996
dealer busts and player wins in 2 moves
Game #: 5997
player wins in 1 moves
Game #: 5998
player wins in 1 moves
Game #: 5999
player busts and loses in 2 moves
Game #: 6000
player loses in 1 moves
Game #: 6001
dealer busts and player wins in 1 moves
Game #: 6002
player loses in 2 moves
Game #: 6003
player busts and loses in 2 moves
Game #: 6004
player busts and loses in 1 moves
Game #: 6005
player loses in 1 moves
Game #: 6006
draw in 1 moves
Game #: 6007
draw in 2 moves
Game #: 6008
draw in 1 moves
Game #: 6009
dealer busts and player wins in 1 moves
Game #: 6010
player loses in 1 moves
Game #: 6011
player loses in 1 moves
Game #: 6012
player loses in 1 moves
Game #: 6013
player busts and loses in 1 moves
Game #: 6014
player busts and loses in 1 moves
Game #: 6015
player loses in 3 moves
Game #: 6016
player loses in 1 moves
Game #: 6017
player loses in 2 moves
Game #: 6018
player busts and loses in 1 moves
Game #: 6019
player wins in 0 moves
Game #: 6020
player loses in 1 moves
Game #: 6021
dealer busts and player wins in 1 moves
Game #: 6022
draw in 3 moves
Game #: 6023
player loses in 1 moves
Game #: 6024
player loses in 1 moves
Game #: 6025
player busts and loses in 1 moves
Game #: 6026
player loses in 1 moves
Game #: 6027
player loses in 1 moves
Game #: 6028
player loses in 1 moves
Game #: 6029
player loses in 2 moves
Game #: 6030
player wins in 1 moves
Game #: 6031
player busts and loses in 1 moves
Game #: 6032
player busts and loses in 2 moves
Game #: 6033
player busts and loses in 1 moves
Game #: 6034
player wins in 0 moves
Game #: 6035
player loses in 1 moves
Game #: 6036
player loses in 1 moves
Game #: 6037
player loses in 2 moves
Game #: 6038
dealer busts and player wins in 1 moves
Game #: 6039
dealer busts and player wins in 1 moves
Game #: 6040
player busts and loses in 2 moves
Game #: 6041
dealer busts and player wins in 1 moves
Game #: 6042
dealer busts and player wins in 1 moves
Game #: 6043
player wins in 1 moves
Game #: 6044
dealer busts and player wins in 1 moves
Game #: 6045
dealer busts and player wins in 1 moves
Game #: 6046
player loses in 1 moves
Game #: 6047
player loses in 1 moves
Game #: 6048
player busts and loses in 1 moves
Game #: 6049
player loses in 1 moves
Game #: 6050
dealer busts and player wins in 1 moves
Game #: 6051
dealer busts and player wins in 1 moves
Game #: 6052
player loses in 2 moves
Game #: 6053
player loses in 1 moves
Game #: 6054
draw in 1 moves
Game #: 6055
player wins in 1 moves
Game #: 6056
player busts and loses in 1 moves
Game #: 6057
player busts and loses in 2 moves
Game #: 6058
draw in 1 moves
Game #: 6059
player wins in 0 moves
Game #: 6060
player loses in 1 moves
Game #: 6061
player busts and loses in 1 moves
Game #: 6062
player wins in 1 moves
Game #: 6063
player loses in 2 moves
Game #: 6064
player wins in 2 moves
Game #: 6065
player busts and loses in 2 moves
Game #: 6066
draw in 1 moves
Game #: 6067
player busts and loses in 1 moves
Game #: 6068
player loses in 1 moves
Game #: 6069
dealer busts and player wins in 1 moves
Game #: 6070
player wins in 0 moves
Game #: 6071
player busts and loses in 1 moves
Game #: 6072
draw in 2 moves
Game #: 6073
player loses in 1 moves
Game #: 6074
player loses in 2 moves
Game #: 6075
dealer busts and player wins in 1 moves
Game #: 6076
player loses in 2 moves
Game #: 6077
player loses in 1 moves
Game #: 6078
draw in 1 moves
Game #: 6079
player wins in 0 moves
Game #: 6080
player busts and loses in 1 moves
Game #: 6081
player wins in 0 moves
Game #: 6082
player busts and loses in 3 moves
Game #: 6083
player wins in 2 moves
Game #: 6084
player loses in 1 moves
Game #: 6085
dealer busts and player wins in 2 moves
Game #: 6086
player busts and loses in 1 moves
Game #: 6087
player loses in 1 moves
Game #: 6088
player busts and loses in 1 moves
Game #: 6089
player wins in 1 moves
Game #: 6090
draw in 2 moves
Game #: 6091
dealer busts and player wins in 2 moves
Game #: 6092
draw in 1 moves
Game #: 6093
player busts and loses in 1 moves
Game #: 6094
player loses in 1 moves
Game #: 6095
player loses in 1 moves
Game #: 6096
player wins in 0 moves
Game #: 6097
player wins in 2 moves
Game #: 6098
player wins in 1 moves
Game #: 6099
dealer busts and player wins in 1 moves
Game #: 6100
player busts and loses in 1 moves
Game #: 6101
player wins in 0 moves
Game #: 6102
player loses in 2 moves
Game #: 6103
player loses in 1 moves
Game #: 6104
player loses in 1 moves
Game #: 6105
player wins in 1 moves
Game #: 6106
player wins in 2 moves
Game #: 6107
dealer busts and player wins in 1 moves
Game #: 6108
player loses in 2 moves
Game #: 6109
player loses in 1 moves
Game #: 6110
player loses in 1 moves
Game #: 6111
player loses in 1 moves
Game #: 6112
player loses in 1 moves
Game #: 6113
player loses in 1 moves
Game #: 6114
player busts and loses in 1 moves
Game #: 6115
player loses in 1 moves
Game #: 6116
player loses in 1 moves
Game #: 6117
dealer busts and player wins in 1 moves
Game #: 6118
player loses in 1 moves
Game #: 6119
draw in 1 moves
Game #: 6120
player busts and loses in 1 moves
Game #: 6121
player busts and loses in 1 moves
Game #: 6122
player loses in 2 moves
Game #: 6123
player loses in 1 moves
Game #: 6124
draw in 1 moves
Game #: 6125
draw in 1 moves
Game #: 6126
dealer busts and player wins in 1 moves
Game #: 6127
player loses in 1 moves
Game #: 6128
player loses in 1 moves
Game #: 6129
player wins in 2 moves
Game #: 6130
player loses in 1 moves
Game #: 6131
player loses in 1 moves
Game #: 6132
player busts and loses in 2 moves
Game #: 6133
dealer busts and player wins in 3 moves
Game #: 6134
player busts and loses in 1 moves
Game #: 6135
player loses in 2 moves
Game #: 6136
player wins in 1 moves
Game #: 6137
dealer busts and player wins in 1 moves
Game #: 6138
player loses in 1 moves
Game #: 6139
player wins in 0 moves
Game #: 6140
player busts and loses in 1 moves
Game #: 6141
player busts and loses in 1 moves
Game #: 6142
player wins in 0 moves
Game #: 6143
player loses in 1 moves
Game #: 6144
player loses in 1 moves
Game #: 6145
player busts and loses in 1 moves
Game #: 6146
dealer busts and player wins in 1 moves
Game #: 6147
player busts and loses in 1 moves
Game #: 6148
player busts and loses in 1 moves
Game #: 6149
player wins in 1 moves
Game #: 6150
player loses in 1 moves
Game #: 6151
player busts and loses in 1 moves
Game #: 6152
player loses in 1 moves
Game #: 6153
player wins in 0 moves
Game #: 6154
player loses in 1 moves
Game #: 6155
player wins in 1 moves
Game #: 6156
player loses in 1 moves
Game #: 6157
dealer busts and player wins in 1 moves
Game #: 6158
dealer busts and player wins in 1 moves
Game #: 6159
draw in 1 moves
Game #: 6160
player loses in 1 moves
Game #: 6161
dealer busts and player wins in 1 moves
Game #: 6162
player wins in 1 moves
Game #: 6163
player busts and loses in 1 moves
Game #: 6164
dealer busts and player wins in 1 moves
Game #: 6165
player wins in 1 moves
Game #: 6166
player wins in 1 moves
Game #: 6167
player busts and loses in 1 moves
Game #: 6168
player busts and loses in 2 moves
Game #: 6169
player loses in 1 moves
Game #: 6170
player loses in 1 moves
Game #: 6171
draw in 1 moves
Game #: 6172
player wins in 1 moves
Game #: 6173
dealer busts and player wins in 1 moves
Game #: 6174
player loses in 1 moves
Game #: 6175
draw in 2 moves
Game #: 6176
player loses in 1 moves
Game #: 6177
player loses in 1 moves
Game #: 6178
dealer busts and player wins in 2 moves
Game #: 6179
dealer busts and player wins in 1 moves
Game #: 6180
player busts and loses in 1 moves
Game #: 6181
player wins in 1 moves
Game #: 6182
player loses in 1 moves
Game #: 6183
draw in 2 moves
Game #: 6184
draw in 1 moves
Game #: 6185
player wins in 1 moves
Game #: 6186
dealer busts and player wins in 1 moves
Game #: 6187
player wins in 2 moves
Game #: 6188
player wins in 0 moves
Game #: 6189
dealer busts and player wins in 1 moves
Game #: 6190
dealer busts and player wins in 1 moves
Game #: 6191
dealer busts and player wins in 1 moves
Game #: 6192
player wins in 0 moves
Game #: 6193
player loses in 1 moves
Game #: 6194
player wins in 0 moves
Game #: 6195
dealer busts and player wins in 1 moves
Game #: 6196
player busts and loses in 1 moves
Game #: 6197
player busts and loses in 1 moves
Game #: 6198
player wins in 0 moves
Game #: 6199
player wins in 2 moves
Game #: 6200
player loses in 1 moves
Game #: 6201
player loses in 2 moves
Game #: 6202
player wins in 0 moves
Game #: 6203
player wins in 2 moves
Game #: 6204
player loses in 1 moves
Game #: 6205
player wins in 0 moves
Game #: 6206
dealer busts and player wins in 2 moves
Game #: 6207
player busts and loses in 1 moves
Game #: 6208
dealer busts and player wins in 1 moves
Game #: 6209
draw in 1 moves
Game #: 6210
player loses in 1 moves
Game #: 6211
player loses in 1 moves
Game #: 6212
player loses in 1 moves
Game #: 6213
dealer busts and player wins in 1 moves
Game #: 6214
player wins in 1 moves
Game #: 6215
player loses in 3 moves
Game #: 6216
player busts and loses in 1 moves
Game #: 6217
player loses in 1 moves
Game #: 6218
player wins in 0 moves
Game #: 6219
dealer busts and player wins in 1 moves
Game #: 6220
player loses in 1 moves
Game #: 6221
player loses in 1 moves
Game #: 6222
player loses in 1 moves
Game #: 6223
player loses in 3 moves
Game #: 6224
player busts and loses in 1 moves
Game #: 6225
player loses in 1 moves
Game #: 6226
player busts and loses in 1 moves
Game #: 6227
player busts and loses in 1 moves
Game #: 6228
player busts and loses in 1 moves
Game #: 6229
draw in 2 moves
Game #: 6230
player loses in 1 moves
Game #: 6231
player wins in 1 moves
Game #: 6232
dealer busts and player wins in 1 moves
Game #: 6233
dealer busts and player wins in 1 moves
Game #: 6234
draw in 1 moves
Game #: 6235
player loses in 1 moves
Game #: 6236
player loses in 1 moves
Game #: 6237
player wins in 1 moves
Game #: 6238
player loses in 1 moves
Game #: 6239
player wins in 1 moves
Game #: 6240
player busts and loses in 1 moves
Game #: 6241
player loses in 2 moves
Game #: 6242
player wins in 0 moves
Game #: 6243
player busts and loses in 1 moves
Game #: 6244
player loses in 1 moves
Game #: 6245
draw in 1 moves
Game #: 6246
player wins in 1 moves
Game #: 6247
player busts and loses in 1 moves
Game #: 6248
player busts and loses in 1 moves
Game #: 6249
dealer busts and player wins in 1 moves
Game #: 6250
player loses in 1 moves
Game #: 6251
dealer busts and player wins in 1 moves
Game #: 6252
player loses in 1 moves
Game #: 6253
dealer busts and player wins in 1 moves
Game #: 6254
player wins in 1 moves
Game #: 6255
player loses in 1 moves
Game #: 6256
player wins in 4 moves
Game #: 6257
player loses in 1 moves
Game #: 6258
dealer busts and player wins in 1 moves
Game #: 6259
player loses in 1 moves
Game #: 6260
player wins in 1 moves
Game #: 6261
player busts and loses in 1 moves
Game #: 6262
player busts and loses in 2 moves
Game #: 6263
player busts and loses in 1 moves
Game #: 6264
dealer busts and player wins in 1 moves
Game #: 6265
player wins in 1 moves
Game #: 6266
player loses in 1 moves
Game #: 6267
player loses in 1 moves
Game #: 6268
dealer busts and player wins in 1 moves
Game #: 6269
player busts and loses in 2 moves
Game #: 6270
player wins in 1 moves
Game #: 6271
dealer busts and player wins in 1 moves
Game #: 6272
player loses in 1 moves
Game #: 6273
player wins in 1 moves
Game #: 6274
player loses in 2 moves
Game #: 6275
player wins in 0 moves
Game #: 6276
player loses in 1 moves
Game #: 6277
player busts and loses in 1 moves
Game #: 6278
player loses in 1 moves
Game #: 6279
player wins in 4 moves
Game #: 6280
player busts and loses in 1 moves
Game #: 6281
player busts and loses in 1 moves
Game #: 6282
player wins in 0 moves
Game #: 6283
dealer busts and player wins in 1 moves
Game #: 6284
dealer busts and player wins in 1 moves
Game #: 6285
player wins in 1 moves
Game #: 6286
dealer busts and player wins in 1 moves
Game #: 6287
dealer busts and player wins in 1 moves
Game #: 6288
draw in 2 moves
Game #: 6289
player loses in 2 moves
Game #: 6290
player wins in 1 moves
Game #: 6291
player wins in 1 moves
Game #: 6292
player loses in 1 moves
Game #: 6293
dealer busts and player wins in 1 moves
Game #: 6294
player loses in 1 moves
Game #: 6295
player busts and loses in 1 moves
Game #: 6296
dealer busts and player wins in 1 moves
Game #: 6297
player loses in 1 moves
Game #: 6298
player busts and loses in 1 moves
Game #: 6299
player wins in 1 moves
Game #: 6300
player wins in 1 moves
Game #: 6301
player busts and loses in 1 moves
Game #: 6302
dealer busts and player wins in 1 moves
Game #: 6303
player loses in 1 moves
Game #: 6304
player loses in 2 moves
Game #: 6305
player busts and loses in 1 moves
Game #: 6306
player loses in 1 moves
Game #: 6307
player loses in 1 moves
Game #: 6308
player loses in 1 moves
Game #: 6309
player wins in 1 moves
Game #: 6310
player loses in 1 moves
Game #: 6311
dealer busts and player wins in 1 moves
Game #: 6312
dealer busts and player wins in 2 moves
Game #: 6313
player loses in 1 moves
Game #: 6314
player loses in 1 moves
Game #: 6315
player wins in 1 moves
Game #: 6316
draw in 2 moves
Game #: 6317
player loses in 1 moves
Game #: 6318
player busts and loses in 1 moves
Game #: 6319
player loses in 1 moves
Game #: 6320
player busts and loses in 1 moves
Game #: 6321
player busts and loses in 1 moves
Game #: 6322
player loses in 1 moves
Game #: 6323
player loses in 1 moves
Game #: 6324
dealer busts and player wins in 1 moves
Game #: 6325
player loses in 1 moves
Game #: 6326
player loses in 1 moves
Game #: 6327
dealer busts and player wins in 1 moves
Game #: 6328
player loses in 1 moves
Game #: 6329
player busts and loses in 1 moves
Game #: 6330
player loses in 1 moves
Game #: 6331
player wins in 0 moves
Game #: 6332
dealer busts and player wins in 1 moves
Game #: 6333
player loses in 1 moves
Game #: 6334
player wins in 1 moves
Game #: 6335
player wins in 1 moves
Game #: 6336
player wins in 0 moves
Game #: 6337
player loses in 1 moves
Game #: 6338
draw in 1 moves
Game #: 6339
player wins in 2 moves
Game #: 6340
player loses in 1 moves
Game #: 6341
dealer busts and player wins in 3 moves
Game #: 6342
player loses in 1 moves
Game #: 6343
player wins in 0 moves
Game #: 6344
player busts and loses in 1 moves
Game #: 6345
player busts and loses in 1 moves
Game #: 6346
player loses in 1 moves
Game #: 6347
player loses in 2 moves
Game #: 6348
player loses in 1 moves
Game #: 6349
dealer busts and player wins in 1 moves
Game #: 6350
player wins in 0 moves
Game #: 6351
player loses in 1 moves
Game #: 6352
player loses in 1 moves
Game #: 6353
dealer busts and player wins in 1 moves
Game #: 6354
player loses in 1 moves
Game #: 6355
player busts and loses in 1 moves
Game #: 6356
player busts and loses in 2 moves
Game #: 6357
player wins in 1 moves
Game #: 6358
player busts and loses in 3 moves
Game #: 6359
player loses in 1 moves
Game #: 6360
player busts and loses in 2 moves
Game #: 6361
player wins in 1 moves
Game #: 6362
player wins in 1 moves
Game #: 6363
player wins in 1 moves
Game #: 6364
draw in 1 moves
Game #: 6365
player busts and loses in 1 moves
Game #: 6366
player wins in 1 moves
Game #: 6367
player loses in 2 moves
Game #: 6368
player wins in 1 moves
Game #: 6369
player loses in 1 moves
Game #: 6370
player busts and loses in 1 moves
Game #: 6371
player loses in 1 moves
Game #: 6372
player loses in 2 moves
Game #: 6373
player loses in 1 moves
Game #: 6374
dealer busts and player wins in 1 moves
Game #: 6375
player wins in 1 moves
Game #: 6376
player loses in 1 moves
Game #: 6377
player loses in 1 moves
Game #: 6378
player wins in 1 moves
Game #: 6379
dealer busts and player wins in 1 moves
Game #: 6380
player busts and loses in 1 moves
Game #: 6381
dealer busts and player wins in 1 moves
Game #: 6382
dealer busts and player wins in 1 moves
Game #: 6383
player wins in 0 moves
Game #: 6384
player wins in 1 moves
Game #: 6385
dealer busts and player wins in 2 moves
Game #: 6386
player loses in 1 moves
Game #: 6387
dealer busts and player wins in 1 moves
Game #: 6388
player busts and loses in 1 moves
Game #: 6389
player wins in 1 moves
Game #: 6390
draw in 1 moves
Game #: 6391
player busts and loses in 2 moves
Game #: 6392
dealer busts and player wins in 1 moves
Game #: 6393
player loses in 1 moves
Game #: 6394
player loses in 1 moves
Game #: 6395
player wins in 0 moves
Game #: 6396
player wins in 0 moves
Game #: 6397
player busts and loses in 1 moves
Game #: 6398
dealer busts and player wins in 1 moves
Game #: 6399
dealer busts and player wins in 1 moves
Game #: 6400
player busts and loses in 1 moves
Game #: 6401
player wins in 1 moves
Game #: 6402
dealer busts and player wins in 1 moves
Game #: 6403
player loses in 2 moves
Game #: 6404
dealer busts and player wins in 1 moves
Game #: 6405
player wins in 0 moves
Game #: 6406
player busts and loses in 1 moves
Game #: 6407
player loses in 2 moves
Game #: 6408
player wins in 1 moves
Game #: 6409
player busts and loses in 1 moves
Game #: 6410
player wins in 1 moves
Game #: 6411
dealer busts and player wins in 1 moves
Game #: 6412
dealer busts and player wins in 1 moves
Game #: 6413
player busts and loses in 2 moves
Game #: 6414
dealer busts and player wins in 1 moves
Game #: 6415
player wins in 1 moves
Game #: 6416
player wins in 0 moves
Game #: 6417
player loses in 1 moves
Game #: 6418
draw in 1 moves
Game #: 6419
player loses in 2 moves
Game #: 6420
player wins in 2 moves
Game #: 6421
dealer busts and player wins in 1 moves
Game #: 6422
player loses in 1 moves
Game #: 6423
player loses in 1 moves
Game #: 6424
player loses in 1 moves
Game #: 6425
player wins in 0 moves
Game #: 6426
player loses in 1 moves
Game #: 6427
player loses in 1 moves
Game #: 6428
player loses in 3 moves
Game #: 6429
dealer busts and player wins in 1 moves
Game #: 6430
player wins in 1 moves
Game #: 6431
player loses in 1 moves
Game #: 6432
player wins in 1 moves
Game #: 6433
player wins in 1 moves
Game #: 6434
player loses in 2 moves
Game #: 6435
dealer busts and player wins in 1 moves
Game #: 6436
player wins in 1 moves
Game #: 6437
player busts and loses in 1 moves
Game #: 6438
draw in 1 moves
Game #: 6439
player loses in 1 moves
Game #: 6440
dealer busts and player wins in 1 moves
Game #: 6441
player wins in 1 moves
Game #: 6442
player busts and loses in 2 moves
Game #: 6443
player loses in 1 moves
Game #: 6444
draw in 1 moves
Game #: 6445
player busts and loses in 1 moves
Game #: 6446
player loses in 1 moves
Game #: 6447
player busts and loses in 1 moves
Game #: 6448
player loses in 1 moves
Game #: 6449
player wins in 1 moves
Game #: 6450
player wins in 0 moves
Game #: 6451
player loses in 1 moves
Game #: 6452
player wins in 1 moves
Game #: 6453
player loses in 2 moves
Game #: 6454
player loses in 1 moves
Game #: 6455
player wins in 0 moves
Game #: 6456
dealer busts and player wins in 1 moves
Game #: 6457
player busts and loses in 2 moves
Game #: 6458
player busts and loses in 1 moves
Game #: 6459
player busts and loses in 1 moves
Game #: 6460
player loses in 1 moves
Game #: 6461
player busts and loses in 1 moves
Game #: 6462
dealer busts and player wins in 1 moves
Game #: 6463
dealer busts and player wins in 1 moves
Game #: 6464
draw in 1 moves
Game #: 6465
player busts and loses in 1 moves
Game #: 6466
player wins in 0 moves
Game #: 6467
dealer busts and player wins in 1 moves
Game #: 6468
player wins in 1 moves
Game #: 6469
player loses in 1 moves
Game #: 6470
player loses in 1 moves
Game #: 6471
player loses in 1 moves
Game #: 6472
player busts and loses in 2 moves
Game #: 6473
dealer busts and player wins in 1 moves
Game #: 6474
draw in 1 moves
Game #: 6475
player wins in 1 moves
Game #: 6476
dealer busts and player wins in 1 moves
Game #: 6477
player loses in 1 moves
Game #: 6478
dealer busts and player wins in 2 moves
Game #: 6479
player loses in 1 moves
Game #: 6480
player busts and loses in 1 moves
Game #: 6481
dealer busts and player wins in 1 moves
Game #: 6482
player loses in 1 moves
Game #: 6483
player loses in 1 moves
Game #: 6484
dealer busts and player wins in 1 moves
Game #: 6485
player loses in 1 moves
Game #: 6486
player loses in 1 moves
Game #: 6487
dealer busts and player wins in 1 moves
Game #: 6488
player loses in 2 moves
Game #: 6489
player loses in 1 moves
Game #: 6490
player loses in 2 moves
Game #: 6491
dealer busts and player wins in 1 moves
Game #: 6492
player loses in 1 moves
Game #: 6493
player loses in 3 moves
Game #: 6494
player loses in 1 moves
Game #: 6495
player loses in 1 moves
Game #: 6496
player loses in 1 moves
Game #: 6497
draw in 1 moves
Game #: 6498
player busts and loses in 1 moves
Game #: 6499
player loses in 1 moves
Game #: 6500
player loses in 1 moves
Game #: 6501
dealer busts and player wins in 1 moves
Game #: 6502
player loses in 1 moves
Game #: 6503
dealer busts and player wins in 1 moves
Game #: 6504
draw in 1 moves
Game #: 6505
draw in 1 moves
Game #: 6506
player loses in 1 moves
Game #: 6507
player loses in 1 moves
Game #: 6508
player wins in 1 moves
Game #: 6509
player loses in 1 moves
Game #: 6510
dealer busts and player wins in 2 moves
Game #: 6511
player loses in 1 moves
Game #: 6512
player loses in 1 moves
Game #: 6513
player loses in 1 moves
Game #: 6514
player wins in 0 moves
Game #: 6515
player busts and loses in 1 moves
Game #: 6516
player wins in 0 moves
Game #: 6517
player wins in 1 moves
Game #: 6518
player loses in 1 moves
Game #: 6519
player wins in 1 moves
Game #: 6520
player wins in 1 moves
Game #: 6521
player loses in 2 moves
Game #: 6522
dealer busts and player wins in 1 moves
Game #: 6523
dealer busts and player wins in 1 moves
Game #: 6524
player busts and loses in 1 moves
Game #: 6525
player loses in 1 moves
Game #: 6526
player busts and loses in 1 moves
Game #: 6527
player loses in 1 moves
Game #: 6528
draw in 1 moves
Game #: 6529
player loses in 1 moves
Game #: 6530
draw in 1 moves
Game #: 6531
player loses in 1 moves
Game #: 6532
player busts and loses in 3 moves
Game #: 6533
player loses in 1 moves
Game #: 6534
player wins in 1 moves
Game #: 6535
player wins in 1 moves
Game #: 6536
player loses in 1 moves
Game #: 6537
dealer busts and player wins in 1 moves
Game #: 6538
player wins in 1 moves
Game #: 6539
player loses in 2 moves
Game #: 6540
player busts and loses in 1 moves
Game #: 6541
dealer busts and player wins in 2 moves
Game #: 6542
player busts and loses in 1 moves
Game #: 6543
dealer busts and player wins in 2 moves
Game #: 6544
dealer busts and player wins in 1 moves
Game #: 6545
player loses in 1 moves
Game #: 6546
player wins in 1 moves
Game #: 6547
player wins in 1 moves
Game #: 6548
player wins in 2 moves
Game #: 6549
player loses in 1 moves
Game #: 6550
player loses in 2 moves
Game #: 6551
player wins in 1 moves
Game #: 6552
player wins in 1 moves
Game #: 6553
player loses in 1 moves
Game #: 6554
player busts and loses in 2 moves
Game #: 6555
player loses in 1 moves
Game #: 6556
player busts and loses in 1 moves
Game #: 6557
draw in 2 moves
Game #: 6558
player wins in 1 moves
Game #: 6559
player loses in 1 moves
Game #: 6560
player loses in 1 moves
Game #: 6561
draw in 1 moves
Game #: 6562
player loses in 2 moves
Game #: 6563
dealer busts and player wins in 1 moves
Game #: 6564
player loses in 1 moves
Game #: 6565
player loses in 2 moves
Game #: 6566
player loses in 2 moves
Game #: 6567
player loses in 1 moves
Game #: 6568
player wins in 1 moves
Game #: 6569
draw in 1 moves
Game #: 6570
player busts and loses in 1 moves
Game #: 6571
dealer busts and player wins in 1 moves
Game #: 6572
dealer busts and player wins in 3 moves
Game #: 6573
player loses in 1 moves
Game #: 6574
player busts and loses in 1 moves
Game #: 6575
player busts and loses in 2 moves
Game #: 6576
player wins in 1 moves
Game #: 6577
player busts and loses in 1 moves
Game #: 6578
player loses in 1 moves
Game #: 6579
player wins in 2 moves
Game #: 6580
draw in 2 moves
Game #: 6581
dealer busts and player wins in 1 moves
Game #: 6582
player loses in 1 moves
Game #: 6583
player busts and loses in 1 moves
Game #: 6584
player busts and loses in 2 moves
Game #: 6585
player busts and loses in 1 moves
Game #: 6586
dealer busts and player wins in 1 moves
Game #: 6587
player loses in 1 moves
Game #: 6588
player busts and loses in 1 moves
Game #: 6589
dealer busts and player wins in 2 moves
Game #: 6590
player wins in 1 moves
Game #: 6591
player wins in 1 moves
Game #: 6592
dealer busts and player wins in 1 moves
Game #: 6593
player busts and loses in 2 moves
Game #: 6594
player loses in 1 moves
Game #: 6595
player loses in 1 moves
Game #: 6596
dealer busts and player wins in 2 moves
Game #: 6597
player wins in 1 moves
Game #: 6598
dealer busts and player wins in 2 moves
Game #: 6599
dealer busts and player wins in 1 moves
Game #: 6600
player loses in 1 moves
Game #: 6601
player busts and loses in 2 moves
Game #: 6602
player wins in 2 moves
Game #: 6603
player wins in 0 moves
Game #: 6604
player busts and loses in 1 moves
Game #: 6605
player wins in 0 moves
Game #: 6606
player loses in 1 moves
Game #: 6607
player loses in 1 moves
Game #: 6608
player wins in 0 moves
Game #: 6609
player busts and loses in 1 moves
Game #: 6610
draw in 1 moves
Game #: 6611
player wins in 1 moves
Game #: 6612
player busts and loses in 1 moves
Game #: 6613
dealer busts and player wins in 2 moves
Game #: 6614
dealer busts and player wins in 2 moves
Game #: 6615
dealer busts and player wins in 2 moves
Game #: 6616
player wins in 1 moves
Game #: 6617
dealer busts and player wins in 1 moves
Game #: 6618
draw in 1 moves
Game #: 6619
player loses in 1 moves
Game #: 6620
dealer busts and player wins in 1 moves
Game #: 6621
player loses in 1 moves
Game #: 6622
player loses in 1 moves
Game #: 6623
player busts and loses in 1 moves
Game #: 6624
player wins in 1 moves
Game #: 6625
player loses in 2 moves
Game #: 6626
dealer busts and player wins in 1 moves
Game #: 6627
player loses in 1 moves
Game #: 6628
player loses in 1 moves
Game #: 6629
player loses in 3 moves
Game #: 6630
player loses in 1 moves
Game #: 6631
dealer busts and player wins in 1 moves
Game #: 6632
player busts and loses in 1 moves
Game #: 6633
dealer busts and player wins in 1 moves
Game #: 6634
player wins in 1 moves
Game #: 6635
player wins in 1 moves
Game #: 6636
dealer busts and player wins in 1 moves
Game #: 6637
player loses in 1 moves
Game #: 6638
player busts and loses in 1 moves
Game #: 6639
player busts and loses in 2 moves
Game #: 6640
dealer busts and player wins in 1 moves
Game #: 6641
player busts and loses in 1 moves
Game #: 6642
player wins in 1 moves
Game #: 6643
player wins in 0 moves
Game #: 6644
player wins in 1 moves
Game #: 6645
player wins in 0 moves
Game #: 6646
player loses in 1 moves
Game #: 6647
player busts and loses in 3 moves
Game #: 6648
player loses in 1 moves
Game #: 6649
player wins in 1 moves
Game #: 6650
player busts and loses in 1 moves
Game #: 6651
player loses in 1 moves
Game #: 6652
player loses in 1 moves
Game #: 6653
draw in 1 moves
Game #: 6654
player loses in 1 moves
Game #: 6655
player loses in 1 moves
Game #: 6656
dealer busts and player wins in 1 moves
Game #: 6657
player busts and loses in 1 moves
Game #: 6658
player loses in 3 moves
Game #: 6659
draw in 2 moves
Game #: 6660
player wins in 1 moves
Game #: 6661
draw in 1 moves
Game #: 6662
dealer busts and player wins in 1 moves
Game #: 6663
dealer busts and player wins in 2 moves
Game #: 6664
player busts and loses in 1 moves
Game #: 6665
dealer busts and player wins in 1 moves
Game #: 6666
player loses in 1 moves
Game #: 6667
dealer busts and player wins in 1 moves
Game #: 6668
player loses in 3 moves
Game #: 6669
dealer busts and player wins in 1 moves
Game #: 6670
player loses in 1 moves
Game #: 6671
dealer busts and player wins in 1 moves
Game #: 6672
dealer busts and player wins in 1 moves
Game #: 6673
player wins in 1 moves
Game #: 6674
dealer busts and player wins in 1 moves
Game #: 6675
dealer busts and player wins in 1 moves
Game #: 6676
player loses in 1 moves
Game #: 6677
dealer busts and player wins in 1 moves
Game #: 6678
player loses in 1 moves
Game #: 6679
dealer busts and player wins in 1 moves
Game #: 6680
player loses in 1 moves
Game #: 6681
dealer busts and player wins in 1 moves
Game #: 6682
player loses in 2 moves
Game #: 6683
player loses in 1 moves
Game #: 6684
player loses in 1 moves
Game #: 6685
player busts and loses in 1 moves
Game #: 6686
player loses in 1 moves
Game #: 6687
dealer busts and player wins in 2 moves
Game #: 6688
player loses in 1 moves
Game #: 6689
player wins in 1 moves
Game #: 6690
player loses in 1 moves
Game #: 6691
dealer busts and player wins in 1 moves
Game #: 6692
player wins in 0 moves
Game #: 6693
dealer busts and player wins in 1 moves
Game #: 6694
player busts and loses in 1 moves
Game #: 6695
dealer busts and player wins in 1 moves
Game #: 6696
dealer busts and player wins in 1 moves
Game #: 6697
player loses in 1 moves
Game #: 6698
player loses in 1 moves
Game #: 6699
player loses in 1 moves
Game #: 6700
player busts and loses in 1 moves
Game #: 6701
player busts and loses in 1 moves
Game #: 6702
player wins in 1 moves
Game #: 6703
player wins in 0 moves
Game #: 6704
dealer busts and player wins in 1 moves
Game #: 6705
player loses in 1 moves
Game #: 6706
draw in 1 moves
Game #: 6707
player wins in 1 moves
Game #: 6708
dealer busts and player wins in 1 moves
Game #: 6709
player busts and loses in 1 moves
Game #: 6710
player loses in 1 moves
Game #: 6711
player busts and loses in 1 moves
Game #: 6712
player loses in 1 moves
Game #: 6713
player wins in 1 moves
Game #: 6714
dealer busts and player wins in 2 moves
Game #: 6715
draw in 1 moves
Game #: 6716
player loses in 1 moves
Game #: 6717
player busts and loses in 2 moves
Game #: 6718
player loses in 2 moves
Game #: 6719
draw in 3 moves
Game #: 6720
dealer busts and player wins in 1 moves
Game #: 6721
player loses in 1 moves
Game #: 6722
player wins in 0 moves
Game #: 6723
player busts and loses in 3 moves
Game #: 6724
player busts and loses in 1 moves
Game #: 6725
player busts and loses in 2 moves
Game #: 6726
player loses in 2 moves
Game #: 6727
player busts and loses in 2 moves
Game #: 6728
dealer busts and player wins in 1 moves
Game #: 6729
player loses in 3 moves
Game #: 6730
player wins in 1 moves
Game #: 6731
draw in 1 moves
Game #: 6732
player busts and loses in 1 moves
Game #: 6733
player wins in 3 moves
Game #: 6734
dealer busts and player wins in 1 moves
Game #: 6735
player wins in 1 moves
Game #: 6736
dealer busts and player wins in 1 moves
Game #: 6737
player busts and loses in 1 moves
Game #: 6738
dealer busts and player wins in 1 moves
Game #: 6739
player loses in 1 moves
Game #: 6740
dealer busts and player wins in 1 moves
Game #: 6741
player wins in 1 moves
Game #: 6742
player wins in 0 moves
Game #: 6743
player loses in 1 moves
Game #: 6744
player wins in 0 moves
Game #: 6745
player loses in 1 moves
Game #: 6746
dealer busts and player wins in 2 moves
Game #: 6747
dealer busts and player wins in 1 moves
Game #: 6748
player wins in 1 moves
Game #: 6749
dealer busts and player wins in 1 moves
Game #: 6750
player busts and loses in 1 moves
Game #: 6751
player loses in 1 moves
Game #: 6752
dealer busts and player wins in 1 moves
Game #: 6753
player busts and loses in 1 moves
Game #: 6754
dealer busts and player wins in 1 moves
Game #: 6755
player busts and loses in 2 moves
Game #: 6756
draw in 1 moves
Game #: 6757
player loses in 1 moves
Game #: 6758
player loses in 1 moves
Game #: 6759
player loses in 1 moves
Game #: 6760
player loses in 1 moves
Game #: 6761
player wins in 1 moves
Game #: 6762
player busts and loses in 1 moves
Game #: 6763
player loses in 1 moves
Game #: 6764
player loses in 1 moves
Game #: 6765
player loses in 1 moves
Game #: 6766
dealer busts and player wins in 1 moves
Game #: 6767
player wins in 0 moves
Game #: 6768
draw in 1 moves
Game #: 6769
player loses in 1 moves
Game #: 6770
player wins in 0 moves
Game #: 6771
player wins in 0 moves
Game #: 6772
player busts and loses in 1 moves
Game #: 6773
player busts and loses in 2 moves
Game #: 6774
player wins in 0 moves
Game #: 6775
player loses in 1 moves
Game #: 6776
player wins in 1 moves
Game #: 6777
player loses in 1 moves
Game #: 6778
player wins in 0 moves
Game #: 6779
player busts and loses in 2 moves
Game #: 6780
player loses in 1 moves
Game #: 6781
draw in 1 moves
Game #: 6782
player loses in 2 moves
Game #: 6783
dealer busts and player wins in 1 moves
Game #: 6784
player loses in 3 moves
Game #: 6785
player loses in 1 moves
Game #: 6786
player loses in 1 moves
Game #: 6787
draw in 1 moves
Game #: 6788
player loses in 1 moves
Game #: 6789
player loses in 2 moves
Game #: 6790
dealer busts and player wins in 1 moves
Game #: 6791
player busts and loses in 1 moves
Game #: 6792
dealer busts and player wins in 1 moves
Game #: 6793
player wins in 0 moves
Game #: 6794
player loses in 2 moves
Game #: 6795
player loses in 1 moves
Game #: 6796
player busts and loses in 1 moves
Game #: 6797
player wins in 1 moves
Game #: 6798
dealer busts and player wins in 2 moves
Game #: 6799
player loses in 1 moves
Game #: 6800
player wins in 2 moves
Game #: 6801
player wins in 0 moves
Game #: 6802
player loses in 1 moves
Game #: 6803
player loses in 1 moves
Game #: 6804
player wins in 1 moves
Game #: 6805
player wins in 1 moves
Game #: 6806
player busts and loses in 1 moves
Game #: 6807
player busts and loses in 1 moves
Game #: 6808
player loses in 1 moves
Game #: 6809
player loses in 2 moves
Game #: 6810
player busts and loses in 1 moves
Game #: 6811
player wins in 2 moves
Game #: 6812
player loses in 2 moves
Game #: 6813
player loses in 1 moves
Game #: 6814
player busts and loses in 1 moves
Game #: 6815
player wins in 0 moves
Game #: 6816
player loses in 1 moves
Game #: 6817
player busts and loses in 1 moves
Game #: 6818
draw in 1 moves
Game #: 6819
player loses in 2 moves
Game #: 6820
player loses in 1 moves
Game #: 6821
player busts and loses in 1 moves
Game #: 6822
dealer busts and player wins in 1 moves
Game #: 6823
player wins in 0 moves
Game #: 6824
draw in 1 moves
Game #: 6825
dealer busts and player wins in 1 moves
Game #: 6826
player loses in 1 moves
Game #: 6827
draw in 1 moves
Game #: 6828
player busts and loses in 1 moves
Game #: 6829
player wins in 2 moves
Game #: 6830
player loses in 1 moves
Game #: 6831
player loses in 1 moves
Game #: 6832
player loses in 2 moves
Game #: 6833
dealer busts and player wins in 2 moves
Game #: 6834
player loses in 1 moves
Game #: 6835
player loses in 4 moves
Game #: 6836
dealer busts and player wins in 1 moves
Game #: 6837
player loses in 1 moves
Game #: 6838
player busts and loses in 2 moves
Game #: 6839
player busts and loses in 1 moves
Game #: 6840
player busts and loses in 1 moves
Game #: 6841
player busts and loses in 1 moves
Game #: 6842
player loses in 1 moves
Game #: 6843
player loses in 3 moves
Game #: 6844
player loses in 1 moves
Game #: 6845
draw in 2 moves
Game #: 6846
player wins in 0 moves
Game #: 6847
player loses in 2 moves
Game #: 6848
player loses in 1 moves
Game #: 6849
player busts and loses in 1 moves
Game #: 6850
draw in 2 moves
Game #: 6851
player loses in 1 moves
Game #: 6852
player wins in 1 moves
Game #: 6853
player wins in 0 moves
Game #: 6854
player busts and loses in 2 moves
Game #: 6855
player wins in 1 moves
Game #: 6856
player wins in 0 moves
Game #: 6857
player wins in 1 moves
Game #: 6858
player busts and loses in 1 moves
Game #: 6859
player busts and loses in 4 moves
Game #: 6860
player wins in 1 moves
Game #: 6861
player busts and loses in 1 moves
Game #: 6862
player wins in 2 moves
Game #: 6863
player busts and loses in 1 moves
Game #: 6864
player loses in 1 moves
Game #: 6865
dealer busts and player wins in 1 moves
Game #: 6866
player wins in 2 moves
Game #: 6867
dealer busts and player wins in 1 moves
Game #: 6868
draw in 1 moves
Game #: 6869
draw in 1 moves
Game #: 6870
player loses in 1 moves
Game #: 6871
draw in 1 moves
Game #: 6872
player busts and loses in 1 moves
Game #: 6873
player busts and loses in 1 moves
Game #: 6874
player busts and loses in 2 moves
Game #: 6875
player wins in 1 moves
Game #: 6876
player busts and loses in 2 moves
Game #: 6877
player busts and loses in 1 moves
Game #: 6878
player loses in 1 moves
Game #: 6879
player busts and loses in 1 moves
Game #: 6880
player wins in 2 moves
Game #: 6881
player busts and loses in 1 moves
Game #: 6882
player loses in 2 moves
Game #: 6883
dealer busts and player wins in 1 moves
Game #: 6884
player loses in 1 moves
Game #: 6885
player busts and loses in 1 moves
Game #: 6886
player loses in 1 moves
Game #: 6887
player loses in 1 moves
Game #: 6888
player wins in 0 moves
Game #: 6889
player busts and loses in 1 moves
Game #: 6890
player busts and loses in 1 moves
Game #: 6891
player loses in 1 moves
Game #: 6892
player loses in 1 moves
Game #: 6893
player busts and loses in 2 moves
Game #: 6894
player loses in 1 moves
Game #: 6895
player busts and loses in 1 moves
Game #: 6896
player busts and loses in 1 moves
Game #: 6897
dealer busts and player wins in 2 moves
Game #: 6898
player busts and loses in 1 moves
Game #: 6899
player loses in 1 moves
Game #: 6900
dealer busts and player wins in 1 moves
Game #: 6901
dealer busts and player wins in 1 moves
Game #: 6902
player wins in 1 moves
Game #: 6903
player loses in 2 moves
Game #: 6904
player loses in 1 moves
Game #: 6905
dealer busts and player wins in 1 moves
Game #: 6906
dealer busts and player wins in 1 moves
Game #: 6907
dealer busts and player wins in 1 moves
Game #: 6908
player wins in 1 moves
Game #: 6909
player busts and loses in 1 moves
Game #: 6910
player loses in 1 moves
Game #: 6911
player busts and loses in 1 moves
Game #: 6912
player loses in 1 moves
Game #: 6913
player loses in 1 moves
Game #: 6914
player busts and loses in 2 moves
Game #: 6915
dealer busts and player wins in 3 moves
Game #: 6916
player wins in 0 moves
Game #: 6917
player wins in 0 moves
Game #: 6918
player loses in 1 moves
Game #: 6919
player loses in 2 moves
Game #: 6920
player wins in 1 moves
Game #: 6921
player wins in 1 moves
Game #: 6922
player wins in 3 moves
Game #: 6923
player loses in 1 moves
Game #: 6924
player loses in 1 moves
Game #: 6925
dealer busts and player wins in 1 moves
Game #: 6926
dealer busts and player wins in 1 moves
Game #: 6927
player loses in 1 moves
Game #: 6928
player loses in 1 moves
Game #: 6929
player busts and loses in 2 moves
Game #: 6930
player loses in 1 moves
Game #: 6931
player wins in 1 moves
Game #: 6932
player loses in 1 moves
Game #: 6933
player busts and loses in 1 moves
Game #: 6934
player busts and loses in 1 moves
Game #: 6935
player busts and loses in 1 moves
Game #: 6936
player wins in 3 moves
Game #: 6937
player loses in 2 moves
Game #: 6938
player busts and loses in 1 moves
Game #: 6939
player loses in 1 moves
Game #: 6940
player loses in 1 moves
Game #: 6941
player loses in 1 moves
Game #: 6942
dealer busts and player wins in 1 moves
Game #: 6943
dealer busts and player wins in 1 moves
Game #: 6944
player wins in 1 moves
Game #: 6945
player loses in 1 moves
Game #: 6946
dealer busts and player wins in 2 moves
Game #: 6947
player loses in 1 moves
Game #: 6948
dealer busts and player wins in 2 moves
Game #: 6949
player busts and loses in 1 moves
Game #: 6950
player loses in 2 moves
Game #: 6951
player loses in 1 moves
Game #: 6952
player wins in 0 moves
Game #: 6953
player loses in 1 moves
Game #: 6954
draw in 1 moves
Game #: 6955
dealer busts and player wins in 1 moves
Game #: 6956
player busts and loses in 1 moves
Game #: 6957
draw in 3 moves
Game #: 6958
player wins in 0 moves
Game #: 6959
player loses in 2 moves
Game #: 6960
dealer busts and player wins in 2 moves
Game #: 6961
player wins in 0 moves
Game #: 6962
player loses in 1 moves
Game #: 6963
player wins in 1 moves
Game #: 6964
player busts and loses in 1 moves
Game #: 6965
player loses in 1 moves
Game #: 6966
player busts and loses in 1 moves
Game #: 6967
player wins in 4 moves
Game #: 6968
player busts and loses in 2 moves
Game #: 6969
player wins in 0 moves
Game #: 6970
player busts and loses in 1 moves
Game #: 6971
player loses in 1 moves
Game #: 6972
player busts and loses in 2 moves
Game #: 6973
player loses in 1 moves
Game #: 6974
player wins in 0 moves
Game #: 6975
player loses in 1 moves
Game #: 6976
player loses in 1 moves
Game #: 6977
player loses in 2 moves
Game #: 6978
dealer busts and player wins in 1 moves
Game #: 6979
player busts and loses in 3 moves
Game #: 6980
player loses in 1 moves
Game #: 6981
player wins in 1 moves
Game #: 6982
player wins in 1 moves
Game #: 6983
player loses in 1 moves
Game #: 6984
dealer busts and player wins in 1 moves
Game #: 6985
player busts and loses in 1 moves
Game #: 6986
player loses in 1 moves
Game #: 6987
player wins in 1 moves
Game #: 6988
player wins in 0 moves
Game #: 6989
draw in 1 moves
Game #: 6990
player loses in 3 moves
Game #: 6991
player loses in 1 moves
Game #: 6992
player loses in 1 moves
Game #: 6993
draw in 1 moves
Game #: 6994
dealer busts and player wins in 1 moves
Game #: 6995
dealer busts and player wins in 1 moves
Game #: 6996
player busts and loses in 1 moves
Game #: 6997
player busts and loses in 1 moves
Game #: 6998
player loses in 1 moves
Game #: 6999
draw in 1 moves
Game #: 7000
dealer busts and player wins in 1 moves
Game #: 7001
player loses in 3 moves
Game #: 7002
player wins in 0 moves
Game #: 7003
player loses in 2 moves
Game #: 7004
player busts and loses in 1 moves
Game #: 7005
draw in 1 moves
Game #: 7006
dealer busts and player wins in 1 moves
Game #: 7007
player wins in 2 moves
Game #: 7008
dealer busts and player wins in 3 moves
Game #: 7009
player wins in 1 moves
Game #: 7010
dealer busts and player wins in 1 moves
Game #: 7011
player wins in 0 moves
Game #: 7012
player wins in 1 moves
Game #: 7013
player busts and loses in 1 moves
Game #: 7014
player busts and loses in 1 moves
Game #: 7015
player busts and loses in 1 moves
Game #: 7016
dealer busts and player wins in 1 moves
Game #: 7017
draw in 1 moves
Game #: 7018
player busts and loses in 1 moves
Game #: 7019
draw in 2 moves
Game #: 7020
player loses in 1 moves
Game #: 7021
player loses in 1 moves
Game #: 7022
dealer busts and player wins in 1 moves
Game #: 7023
player wins in 1 moves
Game #: 7024
player loses in 1 moves
Game #: 7025
player loses in 1 moves
Game #: 7026
draw in 1 moves
Game #: 7027
dealer busts and player wins in 1 moves
Game #: 7028
player loses in 1 moves
Game #: 7029
player loses in 1 moves
Game #: 7030
player loses in 2 moves
Game #: 7031
dealer busts and player wins in 2 moves
Game #: 7032
dealer busts and player wins in 1 moves
Game #: 7033
player wins in 0 moves
Game #: 7034
player loses in 1 moves
Game #: 7035
player loses in 1 moves
Game #: 7036
draw in 2 moves
Game #: 7037
player loses in 1 moves
Game #: 7038
player busts and loses in 1 moves
Game #: 7039
player busts and loses in 1 moves
Game #: 7040
player loses in 1 moves
Game #: 7041
player busts and loses in 2 moves
Game #: 7042
player loses in 1 moves
Game #: 7043
player busts and loses in 1 moves
Game #: 7044
player loses in 2 moves
Game #: 7045
dealer busts and player wins in 1 moves
Game #: 7046
player loses in 1 moves
Game #: 7047
player loses in 2 moves
Game #: 7048
player loses in 1 moves
Game #: 7049
player busts and loses in 1 moves
Game #: 7050
player loses in 1 moves
Game #: 7051
player busts and loses in 1 moves
Game #: 7052
player wins in 0 moves
Game #: 7053
player loses in 1 moves
Game #: 7054
player wins in 1 moves
Game #: 7055
player loses in 1 moves
Game #: 7056
player wins in 1 moves
Game #: 7057
player loses in 1 moves
Game #: 7058
player busts and loses in 1 moves
Game #: 7059
player wins in 0 moves
Game #: 7060
draw in 1 moves
Game #: 7061
dealer busts and player wins in 1 moves
Game #: 7062
player wins in 1 moves
Game #: 7063
player loses in 1 moves
Game #: 7064
player busts and loses in 1 moves
Game #: 7065
draw in 1 moves
Game #: 7066
player loses in 1 moves
Game #: 7067
player busts and loses in 1 moves
Game #: 7068
player loses in 2 moves
Game #: 7069
player loses in 1 moves
Game #: 7070
player wins in 1 moves
Game #: 7071
player busts and loses in 1 moves
Game #: 7072
player busts and loses in 1 moves
Game #: 7073
player wins in 1 moves
Game #: 7074
dealer busts and player wins in 2 moves
Game #: 7075
dealer busts and player wins in 1 moves
Game #: 7076
player loses in 3 moves
Game #: 7077
dealer busts and player wins in 1 moves
Game #: 7078
dealer busts and player wins in 3 moves
Game #: 7079
dealer busts and player wins in 1 moves
Game #: 7080
player loses in 1 moves
Game #: 7081
player loses in 2 moves
Game #: 7082
player busts and loses in 1 moves
Game #: 7083
draw in 1 moves
Game #: 7084
player busts and loses in 1 moves
Game #: 7085
player busts and loses in 2 moves
Game #: 7086
player busts and loses in 1 moves
Game #: 7087
player loses in 3 moves
Game #: 7088
draw in 1 moves
Game #: 7089
dealer busts and player wins in 1 moves
Game #: 7090
player loses in 2 moves
Game #: 7091
player busts and loses in 1 moves
Game #: 7092
player loses in 2 moves
Game #: 7093
player busts and loses in 1 moves
Game #: 7094
player wins in 1 moves
Game #: 7095
player busts and loses in 1 moves
Game #: 7096
player wins in 1 moves
Game #: 7097
draw in 2 moves
Game #: 7098
player busts and loses in 1 moves
Game #: 7099
player loses in 1 moves
Game #: 7100
player busts and loses in 1 moves
Game #: 7101
dealer busts and player wins in 1 moves
Game #: 7102
player loses in 1 moves
Game #: 7103
player loses in 1 moves
Game #: 7104
dealer busts and player wins in 1 moves
Game #: 7105
player loses in 1 moves
Game #: 7106
dealer busts and player wins in 2 moves
Game #: 7107
player loses in 1 moves
Game #: 7108
player loses in 1 moves
Game #: 7109
player loses in 1 moves
Game #: 7110
player loses in 1 moves
Game #: 7111
player busts and loses in 2 moves
Game #: 7112
player busts and loses in 1 moves
Game #: 7113
player busts and loses in 1 moves
Game #: 7114
dealer busts and player wins in 1 moves
Game #: 7115
dealer busts and player wins in 1 moves
Game #: 7116
player loses in 1 moves
Game #: 7117
player loses in 2 moves
Game #: 7118
player wins in 0 moves
Game #: 7119
player loses in 2 moves
Game #: 7120
player loses in 2 moves
Game #: 7121
player busts and loses in 1 moves
Game #: 7122
player busts and loses in 1 moves
Game #: 7123
player loses in 1 moves
Game #: 7124
player busts and loses in 2 moves
Game #: 7125
player wins in 0 moves
Game #: 7126
dealer busts and player wins in 1 moves
Game #: 7127
player loses in 1 moves
Game #: 7128
player wins in 0 moves
Game #: 7129
dealer busts and player wins in 1 moves
Game #: 7130
player wins in 1 moves
Game #: 7131
dealer busts and player wins in 1 moves
Game #: 7132
player loses in 1 moves
Game #: 7133
player wins in 2 moves
Game #: 7134
player busts and loses in 1 moves
Game #: 7135
player loses in 1 moves
Game #: 7136
dealer busts and player wins in 1 moves
Game #: 7137
player wins in 1 moves
Game #: 7138
player wins in 2 moves
Game #: 7139
dealer busts and player wins in 2 moves
Game #: 7140
player loses in 1 moves
Game #: 7141
player loses in 1 moves
Game #: 7142
player busts and loses in 1 moves
Game #: 7143
player busts and loses in 1 moves
Game #: 7144
player loses in 1 moves
Game #: 7145
dealer busts and player wins in 1 moves
Game #: 7146
dealer busts and player wins in 2 moves
Game #: 7147
player loses in 1 moves
Game #: 7148
player busts and loses in 1 moves
Game #: 7149
player loses in 1 moves
Game #: 7150
player wins in 0 moves
Game #: 7151
dealer busts and player wins in 1 moves
Game #: 7152
player wins in 1 moves
Game #: 7153
player wins in 0 moves
Game #: 7154
player wins in 1 moves
Game #: 7155
player loses in 1 moves
Game #: 7156
player wins in 0 moves
Game #: 7157
player loses in 1 moves
Game #: 7158
player busts and loses in 1 moves
Game #: 7159
dealer busts and player wins in 1 moves
Game #: 7160
dealer busts and player wins in 1 moves
Game #: 7161
player loses in 1 moves
Game #: 7162
player loses in 1 moves
Game #: 7163
player wins in 0 moves
Game #: 7164
player loses in 1 moves
Game #: 7165
player loses in 1 moves
Game #: 7166
dealer busts and player wins in 1 moves
Game #: 7167
player busts and loses in 2 moves
Game #: 7168
player loses in 1 moves
Game #: 7169
dealer busts and player wins in 1 moves
Game #: 7170
dealer busts and player wins in 1 moves
Game #: 7171
dealer busts and player wins in 2 moves
Game #: 7172
player wins in 1 moves
Game #: 7173
player busts and loses in 2 moves
Game #: 7174
player loses in 1 moves
Game #: 7175
dealer busts and player wins in 1 moves
Game #: 7176
player loses in 1 moves
Game #: 7177
player loses in 1 moves
Game #: 7178
player wins in 0 moves
Game #: 7179
player busts and loses in 2 moves
Game #: 7180
player loses in 1 moves
Game #: 7181
player loses in 1 moves
Game #: 7182
player wins in 0 moves
Game #: 7183
player wins in 1 moves
Game #: 7184
player loses in 1 moves
Game #: 7185
dealer busts and player wins in 1 moves
Game #: 7186
player wins in 0 moves
Game #: 7187
player wins in 0 moves
Game #: 7188
player loses in 1 moves
Game #: 7189
player busts and loses in 1 moves
Game #: 7190
player wins in 1 moves
Game #: 7191
player busts and loses in 1 moves
Game #: 7192
dealer busts and player wins in 1 moves
Game #: 7193
player loses in 1 moves
Game #: 7194
dealer busts and player wins in 1 moves
Game #: 7195
player busts and loses in 1 moves
Game #: 7196
player loses in 1 moves
Game #: 7197
player wins in 2 moves
Game #: 7198
player busts and loses in 1 moves
Game #: 7199
dealer busts and player wins in 2 moves
Game #: 7200
player loses in 1 moves
Game #: 7201
player loses in 1 moves
Game #: 7202
player loses in 2 moves
Game #: 7203
dealer busts and player wins in 1 moves
Game #: 7204
player loses in 1 moves
Game #: 7205
player loses in 1 moves
Game #: 7206
draw in 1 moves
Game #: 7207
player wins in 2 moves
Game #: 7208
player loses in 1 moves
Game #: 7209
player loses in 1 moves
Game #: 7210
draw in 2 moves
Game #: 7211
draw in 1 moves
Game #: 7212
player wins in 1 moves
Game #: 7213
player wins in 1 moves
Game #: 7214
player busts and loses in 1 moves
Game #: 7215
player loses in 1 moves
Game #: 7216
player wins in 0 moves
Game #: 7217
player loses in 1 moves
Game #: 7218
player wins in 1 moves
Game #: 7219
dealer busts and player wins in 2 moves
Game #: 7220
player wins in 0 moves
Game #: 7221
dealer busts and player wins in 1 moves
Game #: 7222
player wins in 1 moves
Game #: 7223
dealer busts and player wins in 1 moves
Game #: 7224
player loses in 1 moves
Game #: 7225
player busts and loses in 1 moves
Game #: 7226
draw in 2 moves
Game #: 7227
player busts and loses in 1 moves
Game #: 7228
dealer busts and player wins in 1 moves
Game #: 7229
player loses in 1 moves
Game #: 7230
player loses in 1 moves
Game #: 7231
player wins in 0 moves
Game #: 7232
dealer busts and player wins in 1 moves
Game #: 7233
player wins in 1 moves
Game #: 7234
player loses in 1 moves
Game #: 7235
player busts and loses in 1 moves
Game #: 7236
player loses in 1 moves
Game #: 7237
player wins in 1 moves
Game #: 7238
player loses in 1 moves
Game #: 7239
player busts and loses in 1 moves
Game #: 7240
player loses in 1 moves
Game #: 7241
player wins in 1 moves
Game #: 7242
player loses in 1 moves
Game #: 7243
player wins in 1 moves
Game #: 7244
player loses in 2 moves
Game #: 7245
dealer busts and player wins in 1 moves
Game #: 7246
player loses in 1 moves
Game #: 7247
player loses in 1 moves
Game #: 7248
dealer busts and player wins in 1 moves
Game #: 7249
draw in 1 moves
Game #: 7250
dealer busts and player wins in 1 moves
Game #: 7251
player loses in 1 moves
Game #: 7252
dealer busts and player wins in 1 moves
Game #: 7253
player loses in 1 moves
Game #: 7254
player loses in 1 moves
Game #: 7255
player loses in 1 moves
Game #: 7256
player wins in 2 moves
Game #: 7257
player loses in 1 moves
Game #: 7258
player loses in 2 moves
Game #: 7259
player loses in 1 moves
Game #: 7260
draw in 2 moves
Game #: 7261
player loses in 1 moves
Game #: 7262
draw in 1 moves
Game #: 7263
dealer busts and player wins in 1 moves
Game #: 7264
player loses in 1 moves
Game #: 7265
player loses in 2 moves
Game #: 7266
player busts and loses in 1 moves
Game #: 7267
dealer busts and player wins in 3 moves
Game #: 7268
player wins in 2 moves
Game #: 7269
player loses in 1 moves
Game #: 7270
dealer busts and player wins in 1 moves
Game #: 7271
player busts and loses in 1 moves
Game #: 7272
player busts and loses in 2 moves
Game #: 7273
player busts and loses in 1 moves
Game #: 7274
draw in 2 moves
Game #: 7275
player loses in 1 moves
Game #: 7276
player busts and loses in 1 moves
Game #: 7277
player busts and loses in 1 moves
Game #: 7278
dealer busts and player wins in 1 moves
Game #: 7279
player loses in 1 moves
Game #: 7280
player loses in 1 moves
Game #: 7281
player busts and loses in 1 moves
Game #: 7282
dealer busts and player wins in 1 moves
Game #: 7283
player busts and loses in 1 moves
Game #: 7284
player busts and loses in 1 moves
Game #: 7285
player loses in 1 moves
Game #: 7286
player wins in 0 moves
Game #: 7287
dealer busts and player wins in 2 moves
Game #: 7288
player busts and loses in 1 moves
Game #: 7289
player wins in 1 moves
Game #: 7290
player loses in 1 moves
Game #: 7291
dealer busts and player wins in 1 moves
Game #: 7292
player loses in 1 moves
Game #: 7293
dealer busts and player wins in 1 moves
Game #: 7294
player loses in 1 moves
Game #: 7295
dealer busts and player wins in 2 moves
Game #: 7296
player loses in 1 moves
Game #: 7297
dealer busts and player wins in 1 moves
Game #: 7298
player busts and loses in 1 moves
Game #: 7299
player wins in 2 moves
Game #: 7300
player busts and loses in 1 moves
Game #: 7301
player busts and loses in 1 moves
Game #: 7302
player loses in 1 moves
Game #: 7303
dealer busts and player wins in 1 moves
Game #: 7304
player busts and loses in 1 moves
Game #: 7305
player loses in 2 moves
Game #: 7306
player loses in 1 moves
Game #: 7307
player busts and loses in 1 moves
Game #: 7308
player loses in 1 moves
Game #: 7309
player loses in 1 moves
Game #: 7310
dealer busts and player wins in 1 moves
Game #: 7311
player loses in 1 moves
Game #: 7312
dealer busts and player wins in 1 moves
Game #: 7313
draw in 1 moves
Game #: 7314
player loses in 2 moves
Game #: 7315
draw in 1 moves
Game #: 7316
player loses in 1 moves
Game #: 7317
player loses in 1 moves
Game #: 7318
player busts and loses in 1 moves
Game #: 7319
player wins in 2 moves
Game #: 7320
player loses in 1 moves
Game #: 7321
player loses in 1 moves
Game #: 7322
player busts and loses in 2 moves
Game #: 7323
player loses in 2 moves
Game #: 7324
player wins in 1 moves
Game #: 7325
player loses in 1 moves
Game #: 7326
player busts and loses in 1 moves
Game #: 7327
player busts and loses in 2 moves
Game #: 7328
player loses in 1 moves
Game #: 7329
player loses in 2 moves
Game #: 7330
draw in 2 moves
Game #: 7331
player busts and loses in 1 moves
Game #: 7332
player wins in 0 moves
Game #: 7333
player loses in 1 moves
Game #: 7334
player wins in 1 moves
Game #: 7335
draw in 1 moves
Game #: 7336
player busts and loses in 1 moves
Game #: 7337
player loses in 2 moves
Game #: 7338
dealer busts and player wins in 1 moves
Game #: 7339
draw in 1 moves
Game #: 7340
player busts and loses in 1 moves
Game #: 7341
player wins in 1 moves
Game #: 7342
player loses in 1 moves
Game #: 7343
dealer busts and player wins in 2 moves
Game #: 7344
player wins in 0 moves
Game #: 7345
player wins in 0 moves
Game #: 7346
player loses in 2 moves
Game #: 7347
player wins in 0 moves
Game #: 7348
player wins in 1 moves
Game #: 7349
player wins in 0 moves
Game #: 7350
player loses in 2 moves
Game #: 7351
player busts and loses in 1 moves
Game #: 7352
player busts and loses in 3 moves
Game #: 7353
player busts and loses in 1 moves
Game #: 7354
player loses in 1 moves
Game #: 7355
player wins in 2 moves
Game #: 7356
dealer busts and player wins in 1 moves
Game #: 7357
dealer busts and player wins in 1 moves
Game #: 7358
player loses in 1 moves
Game #: 7359
player wins in 1 moves
Game #: 7360
dealer busts and player wins in 1 moves
Game #: 7361
player loses in 1 moves
Game #: 7362
player busts and loses in 1 moves
Game #: 7363
dealer busts and player wins in 1 moves
Game #: 7364
draw in 1 moves
Game #: 7365
player loses in 1 moves
Game #: 7366
player loses in 4 moves
Game #: 7367
player loses in 1 moves
Game #: 7368
player loses in 1 moves
Game #: 7369
dealer busts and player wins in 1 moves
Game #: 7370
player loses in 2 moves
Game #: 7371
player wins in 1 moves
Game #: 7372
player busts and loses in 1 moves
Game #: 7373
player wins in 1 moves
Game #: 7374
player wins in 1 moves
Game #: 7375
player busts and loses in 1 moves
Game #: 7376
player busts and loses in 2 moves
Game #: 7377
draw in 2 moves
Game #: 7378
player loses in 2 moves
Game #: 7379
player busts and loses in 1 moves
Game #: 7380
player loses in 1 moves
Game #: 7381
player busts and loses in 1 moves
Game #: 7382
player busts and loses in 2 moves
Game #: 7383
draw in 1 moves
Game #: 7384
player wins in 1 moves
Game #: 7385
player wins in 3 moves
Game #: 7386
player wins in 2 moves
Game #: 7387
player loses in 1 moves
Game #: 7388
player loses in 1 moves
Game #: 7389
player wins in 1 moves
Game #: 7390
draw in 2 moves
Game #: 7391
draw in 1 moves
Game #: 7392
draw in 1 moves
Game #: 7393
dealer busts and player wins in 1 moves
Game #: 7394
dealer busts and player wins in 1 moves
Game #: 7395
dealer busts and player wins in 1 moves
Game #: 7396
player busts and loses in 1 moves
Game #: 7397
player wins in 0 moves
Game #: 7398
player loses in 1 moves
Game #: 7399
player wins in 1 moves
Game #: 7400
player loses in 3 moves
Game #: 7401
dealer busts and player wins in 1 moves
Game #: 7402
player wins in 1 moves
Game #: 7403
player wins in 0 moves
Game #: 7404
player busts and loses in 1 moves
Game #: 7405
player busts and loses in 2 moves
Game #: 7406
player loses in 1 moves
Game #: 7407
player loses in 1 moves
Game #: 7408
player wins in 2 moves
Game #: 7409
player busts and loses in 1 moves
Game #: 7410
player busts and loses in 1 moves
Game #: 7411
player busts and loses in 1 moves
Game #: 7412
player wins in 0 moves
Game #: 7413
dealer busts and player wins in 1 moves
Game #: 7414
player loses in 1 moves
Game #: 7415
dealer busts and player wins in 1 moves
Game #: 7416
player busts and loses in 1 moves
Game #: 7417
player busts and loses in 1 moves
Game #: 7418
player busts and loses in 1 moves
Game #: 7419
player wins in 2 moves
Game #: 7420
draw in 1 moves
Game #: 7421
player loses in 1 moves
Game #: 7422
dealer busts and player wins in 1 moves
Game #: 7423
dealer busts and player wins in 1 moves
Game #: 7424
dealer busts and player wins in 1 moves
Game #: 7425
player wins in 1 moves
Game #: 7426
player busts and loses in 1 moves
Game #: 7427
player busts and loses in 1 moves
Game #: 7428
player busts and loses in 1 moves
Game #: 7429
player busts and loses in 1 moves
Game #: 7430
player wins in 0 moves
Game #: 7431
player busts and loses in 1 moves
Game #: 7432
player loses in 1 moves
Game #: 7433
dealer busts and player wins in 1 moves
Game #: 7434
player loses in 1 moves
Game #: 7435
dealer busts and player wins in 1 moves
Game #: 7436
dealer busts and player wins in 1 moves
Game #: 7437
dealer busts and player wins in 1 moves
Game #: 7438
player loses in 1 moves
Game #: 7439
player loses in 1 moves
Game #: 7440
dealer busts and player wins in 1 moves
Game #: 7441
player loses in 1 moves
Game #: 7442
dealer busts and player wins in 2 moves
Game #: 7443
player wins in 0 moves
Game #: 7444
player busts and loses in 1 moves
Game #: 7445
dealer busts and player wins in 2 moves
Game #: 7446
player wins in 1 moves
Game #: 7447
player loses in 1 moves
Game #: 7448
player loses in 1 moves
Game #: 7449
player busts and loses in 1 moves
Game #: 7450
dealer busts and player wins in 1 moves
Game #: 7451
draw in 1 moves
Game #: 7452
player wins in 1 moves
Game #: 7453
player busts and loses in 1 moves
Game #: 7454
player loses in 1 moves
Game #: 7455
player loses in 1 moves
Game #: 7456
player loses in 1 moves
Game #: 7457
player wins in 1 moves
Game #: 7458
player loses in 1 moves
Game #: 7459
player loses in 1 moves
Game #: 7460
player wins in 1 moves
Game #: 7461
player loses in 1 moves
Game #: 7462
player loses in 1 moves
Game #: 7463
dealer busts and player wins in 1 moves
Game #: 7464
player loses in 2 moves
Game #: 7465
dealer busts and player wins in 1 moves
Game #: 7466
player busts and loses in 1 moves
Game #: 7467
dealer busts and player wins in 1 moves
Game #: 7468
player loses in 1 moves
Game #: 7469
dealer busts and player wins in 2 moves
Game #: 7470
player loses in 1 moves
Game #: 7471
dealer busts and player wins in 1 moves
Game #: 7472
player wins in 1 moves
Game #: 7473
player loses in 1 moves
Game #: 7474
player loses in 1 moves
Game #: 7475
player wins in 1 moves
Game #: 7476
player loses in 1 moves
Game #: 7477
player wins in 0 moves
Game #: 7478
player wins in 1 moves
Game #: 7479
player loses in 1 moves
Game #: 7480
player busts and loses in 1 moves
Game #: 7481
player loses in 1 moves
Game #: 7482
player loses in 1 moves
Game #: 7483
player loses in 2 moves
Game #: 7484
player wins in 1 moves
Game #: 7485
draw in 1 moves
Game #: 7486
player wins in 1 moves
Game #: 7487
player busts and loses in 1 moves
Game #: 7488
player loses in 3 moves
Game #: 7489
player wins in 3 moves
Game #: 7490
player wins in 0 moves
Game #: 7491
player wins in 1 moves
Game #: 7492
draw in 1 moves
Game #: 7493
player loses in 1 moves
Game #: 7494
player busts and loses in 1 moves
Game #: 7495
player loses in 1 moves
Game #: 7496
dealer busts and player wins in 1 moves
Game #: 7497
draw in 1 moves
Game #: 7498
player busts and loses in 1 moves
Game #: 7499
player wins in 0 moves
Game #: 7500
player loses in 1 moves
Game #: 7501
dealer busts and player wins in 2 moves
Game #: 7502
draw in 1 moves
Game #: 7503
dealer busts and player wins in 1 moves
Game #: 7504
player loses in 1 moves
Game #: 7505
draw in 1 moves
Game #: 7506
player loses in 1 moves
Game #: 7507
dealer busts and player wins in 3 moves
Game #: 7508
player busts and loses in 1 moves
Game #: 7509
player loses in 1 moves
Game #: 7510
dealer busts and player wins in 1 moves
Game #: 7511
player loses in 1 moves
Game #: 7512
player busts and loses in 1 moves
Game #: 7513
dealer busts and player wins in 1 moves
Game #: 7514
player loses in 1 moves
Game #: 7515
player busts and loses in 1 moves
Game #: 7516
player loses in 1 moves
Game #: 7517
player wins in 0 moves
Game #: 7518
dealer busts and player wins in 1 moves
Game #: 7519
player busts and loses in 1 moves
Game #: 7520
player busts and loses in 1 moves
Game #: 7521
player busts and loses in 1 moves
Game #: 7522
draw in 1 moves
Game #: 7523
player loses in 1 moves
Game #: 7524
dealer busts and player wins in 1 moves
Game #: 7525
dealer busts and player wins in 2 moves
Game #: 7526
dealer busts and player wins in 1 moves
Game #: 7527
player loses in 1 moves
Game #: 7528
player loses in 2 moves
Game #: 7529
player loses in 1 moves
Game #: 7530
player wins in 1 moves
Game #: 7531
player busts and loses in 1 moves
Game #: 7532
dealer busts and player wins in 1 moves
Game #: 7533
dealer busts and player wins in 1 moves
Game #: 7534
dealer busts and player wins in 1 moves
Game #: 7535
player loses in 2 moves
Game #: 7536
dealer busts and player wins in 1 moves
Game #: 7537
player loses in 1 moves
Game #: 7538
player wins in 1 moves
Game #: 7539
player loses in 2 moves
Game #: 7540
dealer busts and player wins in 2 moves
Game #: 7541
player loses in 1 moves
Game #: 7542
player wins in 1 moves
Game #: 7543
player busts and loses in 1 moves
Game #: 7544
player loses in 3 moves
Game #: 7545
player wins in 1 moves
Game #: 7546
dealer busts and player wins in 1 moves
Game #: 7547
player loses in 1 moves
Game #: 7548
player busts and loses in 1 moves
Game #: 7549
player loses in 2 moves
Game #: 7550
player loses in 1 moves
Game #: 7551
dealer busts and player wins in 1 moves
Game #: 7552
player busts and loses in 2 moves
Game #: 7553
player loses in 1 moves
Game #: 7554
dealer busts and player wins in 1 moves
Game #: 7555
player loses in 2 moves
Game #: 7556
player busts and loses in 1 moves
Game #: 7557
player loses in 1 moves
Game #: 7558
player loses in 1 moves
Game #: 7559
player loses in 3 moves
Game #: 7560
player loses in 1 moves
Game #: 7561
draw in 3 moves
Game #: 7562
player loses in 1 moves
Game #: 7563
draw in 1 moves
Game #: 7564
dealer busts and player wins in 2 moves
Game #: 7565
player wins in 0 moves
Game #: 7566
player loses in 1 moves
Game #: 7567
player loses in 2 moves
Game #: 7568
player loses in 1 moves
Game #: 7569
dealer busts and player wins in 1 moves
Game #: 7570
dealer busts and player wins in 3 moves
Game #: 7571
player wins in 0 moves
Game #: 7572
player loses in 1 moves
Game #: 7573
player busts and loses in 1 moves
Game #: 7574
dealer busts and player wins in 2 moves
Game #: 7575
dealer busts and player wins in 1 moves
Game #: 7576
dealer busts and player wins in 1 moves
Game #: 7577
player wins in 1 moves
Game #: 7578
player wins in 1 moves
Game #: 7579
player busts and loses in 1 moves
Game #: 7580
player busts and loses in 1 moves
Game #: 7581
draw in 2 moves
Game #: 7582
player busts and loses in 1 moves
Game #: 7583
player loses in 1 moves
Game #: 7584
dealer busts and player wins in 1 moves
Game #: 7585
player busts and loses in 1 moves
Game #: 7586
player wins in 1 moves
Game #: 7587
player busts and loses in 1 moves
Game #: 7588
player loses in 1 moves
Game #: 7589
player loses in 1 moves
Game #: 7590
player busts and loses in 1 moves
Game #: 7591
player wins in 1 moves
Game #: 7592
player wins in 0 moves
Game #: 7593
player busts and loses in 1 moves
Game #: 7594
draw in 2 moves
Game #: 7595
draw in 2 moves
Game #: 7596
player wins in 0 moves
Game #: 7597
dealer busts and player wins in 1 moves
Game #: 7598
player loses in 1 moves
Game #: 7599
player busts and loses in 1 moves
Game #: 7600
draw in 1 moves
Game #: 7601
player busts and loses in 1 moves
Game #: 7602
player loses in 1 moves
Game #: 7603
player loses in 1 moves
Game #: 7604
dealer busts and player wins in 1 moves
Game #: 7605
player wins in 1 moves
Game #: 7606
player loses in 1 moves
Game #: 7607
player busts and loses in 1 moves
Game #: 7608
dealer busts and player wins in 1 moves
Game #: 7609
player loses in 1 moves
Game #: 7610
player loses in 1 moves
Game #: 7611
dealer busts and player wins in 1 moves
Game #: 7612
player busts and loses in 1 moves
Game #: 7613
player busts and loses in 1 moves
Game #: 7614
player busts and loses in 1 moves
Game #: 7615
player loses in 2 moves
Game #: 7616
player loses in 1 moves
Game #: 7617
draw in 1 moves
Game #: 7618
player loses in 1 moves
Game #: 7619
player busts and loses in 1 moves
Game #: 7620
dealer busts and player wins in 1 moves
Game #: 7621
player loses in 1 moves
Game #: 7622
player busts and loses in 1 moves
Game #: 7623
player wins in 1 moves
Game #: 7624
player busts and loses in 1 moves
Game #: 7625
player wins in 0 moves
Game #: 7626
dealer busts and player wins in 2 moves
Game #: 7627
dealer busts and player wins in 1 moves
Game #: 7628
player loses in 3 moves
Game #: 7629
player loses in 1 moves
Game #: 7630
player loses in 1 moves
Game #: 7631
player busts and loses in 1 moves
Game #: 7632
player loses in 1 moves
Game #: 7633
player loses in 1 moves
Game #: 7634
dealer busts and player wins in 1 moves
Game #: 7635
draw in 1 moves
Game #: 7636
draw in 1 moves
Game #: 7637
player loses in 1 moves
Game #: 7638
player loses in 1 moves
Game #: 7639
player wins in 1 moves
Game #: 7640
player wins in 1 moves
Game #: 7641
dealer busts and player wins in 1 moves
Game #: 7642
dealer busts and player wins in 1 moves
Game #: 7643
dealer busts and player wins in 1 moves
Game #: 7644
player loses in 1 moves
Game #: 7645
dealer busts and player wins in 1 moves
Game #: 7646
player loses in 1 moves
Game #: 7647
dealer busts and player wins in 2 moves
Game #: 7648
draw in 1 moves
Game #: 7649
dealer busts and player wins in 1 moves
Game #: 7650
player loses in 1 moves
Game #: 7651
dealer busts and player wins in 1 moves
Game #: 7652
dealer busts and player wins in 2 moves
Game #: 7653
player loses in 1 moves
Game #: 7654
player busts and loses in 1 moves
Game #: 7655
player loses in 1 moves
Game #: 7656
player wins in 1 moves
Game #: 7657
player loses in 1 moves
Game #: 7658
player busts and loses in 2 moves
Game #: 7659
player loses in 1 moves
Game #: 7660
dealer busts and player wins in 1 moves
Game #: 7661
player wins in 3 moves
Game #: 7662
player busts and loses in 1 moves
Game #: 7663
player busts and loses in 1 moves
Game #: 7664
dealer busts and player wins in 1 moves
Game #: 7665
player busts and loses in 2 moves
Game #: 7666
player loses in 1 moves
Game #: 7667
draw in 1 moves
Game #: 7668
player busts and loses in 1 moves
Game #: 7669
player loses in 1 moves
Game #: 7670
player busts and loses in 1 moves
Game #: 7671
player loses in 1 moves
Game #: 7672
player busts and loses in 1 moves
Game #: 7673
player loses in 1 moves
Game #: 7674
player busts and loses in 1 moves
Game #: 7675
player wins in 1 moves
Game #: 7676
dealer busts and player wins in 2 moves
Game #: 7677
player loses in 1 moves
Game #: 7678
player wins in 1 moves
Game #: 7679
player wins in 1 moves
Game #: 7680
dealer busts and player wins in 1 moves
Game #: 7681
dealer busts and player wins in 1 moves
Game #: 7682
player busts and loses in 1 moves
Game #: 7683
player loses in 1 moves
Game #: 7684
player loses in 2 moves
Game #: 7685
draw in 1 moves
Game #: 7686
player loses in 1 moves
Game #: 7687
player wins in 1 moves
Game #: 7688
player loses in 1 moves
Game #: 7689
player wins in 1 moves
Game #: 7690
player loses in 1 moves
Game #: 7691
draw in 1 moves
Game #: 7692
dealer busts and player wins in 1 moves
Game #: 7693
draw in 1 moves
Game #: 7694
player loses in 1 moves
Game #: 7695
player wins in 0 moves
Game #: 7696
dealer busts and player wins in 1 moves
Game #: 7697
player loses in 1 moves
Game #: 7698
dealer busts and player wins in 1 moves
Game #: 7699
dealer busts and player wins in 1 moves
Game #: 7700
player loses in 1 moves
Game #: 7701
player wins in 0 moves
Game #: 7702
player wins in 1 moves
Game #: 7703
player loses in 1 moves
Game #: 7704
player wins in 1 moves
Game #: 7705
draw in 1 moves
Game #: 7706
dealer busts and player wins in 1 moves
Game #: 7707
dealer busts and player wins in 1 moves
Game #: 7708
player loses in 1 moves
Game #: 7709
player loses in 1 moves
Game #: 7710
player loses in 1 moves
Game #: 7711
player busts and loses in 1 moves
Game #: 7712
player loses in 1 moves
Game #: 7713
player loses in 1 moves
Game #: 7714
player loses in 1 moves
Game #: 7715
player busts and loses in 2 moves
Game #: 7716
dealer busts and player wins in 2 moves
Game #: 7717
player wins in 2 moves
Game #: 7718
player wins in 0 moves
Game #: 7719
player loses in 1 moves
Game #: 7720
player busts and loses in 2 moves
Game #: 7721
player loses in 1 moves
Game #: 7722
player loses in 1 moves
Game #: 7723
player loses in 1 moves
Game #: 7724
player loses in 1 moves
Game #: 7725
player loses in 1 moves
Game #: 7726
draw in 1 moves
Game #: 7727
dealer busts and player wins in 1 moves
Game #: 7728
dealer busts and player wins in 1 moves
Game #: 7729
player wins in 0 moves
Game #: 7730
player loses in 2 moves
Game #: 7731
draw in 1 moves
Game #: 7732
player loses in 1 moves
Game #: 7733
player busts and loses in 1 moves
Game #: 7734
player loses in 2 moves
Game #: 7735
player loses in 1 moves
Game #: 7736
player loses in 1 moves
Game #: 7737
player wins in 0 moves
Game #: 7738
player loses in 1 moves
Game #: 7739
draw in 1 moves
Game #: 7740
player busts and loses in 1 moves
Game #: 7741
player loses in 1 moves
Game #: 7742
player busts and loses in 1 moves
Game #: 7743
player busts and loses in 1 moves
Game #: 7744
player loses in 1 moves
Game #: 7745
dealer busts and player wins in 2 moves
Game #: 7746
player loses in 1 moves
Game #: 7747
player busts and loses in 2 moves
Game #: 7748
player loses in 1 moves
Game #: 7749
player loses in 1 moves
Game #: 7750
player wins in 0 moves
Game #: 7751
player busts and loses in 1 moves
Game #: 7752
player busts and loses in 1 moves
Game #: 7753
player loses in 1 moves
Game #: 7754
player wins in 0 moves
Game #: 7755
player loses in 1 moves
Game #: 7756
dealer busts and player wins in 1 moves
Game #: 7757
dealer busts and player wins in 1 moves
Game #: 7758
draw in 2 moves
Game #: 7759
player busts and loses in 1 moves
Game #: 7760
player wins in 2 moves
Game #: 7761
player wins in 1 moves
Game #: 7762
player loses in 1 moves
Game #: 7763
player loses in 1 moves
Game #: 7764
player loses in 1 moves
Game #: 7765
dealer busts and player wins in 1 moves
Game #: 7766
player loses in 1 moves
Game #: 7767
player wins in 2 moves
Game #: 7768
player wins in 1 moves
Game #: 7769
player loses in 1 moves
Game #: 7770
player loses in 1 moves
Game #: 7771
player loses in 1 moves
Game #: 7772
player loses in 1 moves
Game #: 7773
player busts and loses in 1 moves
Game #: 7774
player loses in 3 moves
Game #: 7775
dealer busts and player wins in 1 moves
Game #: 7776
player loses in 1 moves
Game #: 7777
player loses in 1 moves
Game #: 7778
dealer busts and player wins in 1 moves
Game #: 7779
dealer busts and player wins in 1 moves
Game #: 7780
draw in 1 moves
Game #: 7781
player loses in 1 moves
Game #: 7782
player busts and loses in 1 moves
Game #: 7783
player loses in 1 moves
Game #: 7784
draw in 2 moves
Game #: 7785
player loses in 1 moves
Game #: 7786
dealer busts and player wins in 1 moves
Game #: 7787
player wins in 1 moves
Game #: 7788
player busts and loses in 2 moves
Game #: 7789
player wins in 1 moves
Game #: 7790
player busts and loses in 1 moves
Game #: 7791
player loses in 1 moves
Game #: 7792
player busts and loses in 1 moves
Game #: 7793
player wins in 1 moves
Game #: 7794
dealer busts and player wins in 1 moves
Game #: 7795
player loses in 1 moves
Game #: 7796
player busts and loses in 2 moves
Game #: 7797
player loses in 1 moves
Game #: 7798
dealer busts and player wins in 1 moves
Game #: 7799
player wins in 1 moves
Game #: 7800
player loses in 1 moves
Game #: 7801
dealer busts and player wins in 1 moves
Game #: 7802
player wins in 1 moves
Game #: 7803
dealer busts and player wins in 1 moves
Game #: 7804
player loses in 1 moves
Game #: 7805
player loses in 1 moves
Game #: 7806
draw in 1 moves
Game #: 7807
player loses in 1 moves
Game #: 7808
dealer busts and player wins in 1 moves
Game #: 7809
player busts and loses in 1 moves
Game #: 7810
player wins in 1 moves
Game #: 7811
player busts and loses in 1 moves
Game #: 7812
dealer busts and player wins in 1 moves
Game #: 7813
dealer busts and player wins in 2 moves
Game #: 7814
player busts and loses in 1 moves
Game #: 7815
player loses in 1 moves
Game #: 7816
player loses in 1 moves
Game #: 7817
dealer busts and player wins in 1 moves
Game #: 7818
player wins in 0 moves
Game #: 7819
player busts and loses in 1 moves
Game #: 7820
player busts and loses in 1 moves
Game #: 7821
player loses in 1 moves
Game #: 7822
draw in 1 moves
Game #: 7823
player loses in 2 moves
Game #: 7824
player wins in 2 moves
Game #: 7825
dealer busts and player wins in 1 moves
Game #: 7826
player busts and loses in 1 moves
Game #: 7827
player loses in 1 moves
Game #: 7828
player wins in 1 moves
Game #: 7829
dealer busts and player wins in 1 moves
Game #: 7830
dealer busts and player wins in 1 moves
Game #: 7831
player loses in 1 moves
Game #: 7832
player busts and loses in 1 moves
Game #: 7833
player wins in 1 moves
Game #: 7834
player loses in 1 moves
Game #: 7835
dealer busts and player wins in 2 moves
Game #: 7836
player busts and loses in 1 moves
Game #: 7837
dealer busts and player wins in 1 moves
Game #: 7838
player loses in 1 moves
Game #: 7839
dealer busts and player wins in 1 moves
Game #: 7840
dealer busts and player wins in 1 moves
Game #: 7841
player loses in 1 moves
Game #: 7842
player loses in 2 moves
Game #: 7843
player loses in 1 moves
Game #: 7844
draw in 1 moves
Game #: 7845
player loses in 1 moves
Game #: 7846
player wins in 2 moves
Game #: 7847
player busts and loses in 1 moves
Game #: 7848
player loses in 1 moves
Game #: 7849
dealer busts and player wins in 1 moves
Game #: 7850
player wins in 0 moves
Game #: 7851
player loses in 1 moves
Game #: 7852
player busts and loses in 1 moves
Game #: 7853
dealer busts and player wins in 1 moves
Game #: 7854
player busts and loses in 2 moves
Game #: 7855
player busts and loses in 1 moves
Game #: 7856
player wins in 1 moves
Game #: 7857
player busts and loses in 1 moves
Game #: 7858
dealer busts and player wins in 1 moves
Game #: 7859
player loses in 1 moves
Game #: 7860
player wins in 2 moves
Game #: 7861
dealer busts and player wins in 1 moves
Game #: 7862
player loses in 1 moves
Game #: 7863
dealer busts and player wins in 1 moves
Game #: 7864
dealer busts and player wins in 1 moves
Game #: 7865
player busts and loses in 1 moves
Game #: 7866
player busts and loses in 3 moves
Game #: 7867
player wins in 1 moves
Game #: 7868
player wins in 1 moves
Game #: 7869
player wins in 1 moves
Game #: 7870
player wins in 0 moves
Game #: 7871
dealer busts and player wins in 1 moves
Game #: 7872
player loses in 1 moves
Game #: 7873
player busts and loses in 1 moves
Game #: 7874
player busts and loses in 2 moves
Game #: 7875
player loses in 1 moves
Game #: 7876
player loses in 1 moves
Game #: 7877
dealer busts and player wins in 1 moves
Game #: 7878
player wins in 1 moves
Game #: 7879
draw in 1 moves
Game #: 7880
player busts and loses in 1 moves
Game #: 7881
dealer busts and player wins in 1 moves
Game #: 7882
dealer busts and player wins in 1 moves
Game #: 7883
player loses in 1 moves
Game #: 7884
dealer busts and player wins in 1 moves
Game #: 7885
player loses in 2 moves
Game #: 7886
player busts and loses in 1 moves
Game #: 7887
player wins in 1 moves
Game #: 7888
dealer busts and player wins in 1 moves
Game #: 7889
player wins in 1 moves
Game #: 7890
player loses in 1 moves
Game #: 7891
player loses in 3 moves
Game #: 7892
dealer busts and player wins in 1 moves
Game #: 7893
player loses in 1 moves
Game #: 7894
player wins in 0 moves
Game #: 7895
player wins in 2 moves
Game #: 7896
player wins in 1 moves
Game #: 7897
dealer busts and player wins in 1 moves
Game #: 7898
player loses in 1 moves
Game #: 7899
player busts and loses in 1 moves
Game #: 7900
dealer busts and player wins in 1 moves
Game #: 7901
draw in 1 moves
Game #: 7902
dealer busts and player wins in 2 moves
Game #: 7903
player busts and loses in 2 moves
Game #: 7904
dealer busts and player wins in 1 moves
Game #: 7905
dealer busts and player wins in 1 moves
Game #: 7906
draw in 1 moves
Game #: 7907
dealer busts and player wins in 1 moves
Game #: 7908
player wins in 1 moves
Game #: 7909
player loses in 1 moves
Game #: 7910
player busts and loses in 1 moves
Game #: 7911
player busts and loses in 1 moves
Game #: 7912
dealer busts and player wins in 1 moves
Game #: 7913
player busts and loses in 3 moves
Game #: 7914
draw in 1 moves
Game #: 7915
player wins in 1 moves
Game #: 7916
dealer busts and player wins in 1 moves
Game #: 7917
player busts and loses in 2 moves
Game #: 7918
player loses in 1 moves
Game #: 7919
dealer busts and player wins in 1 moves
Game #: 7920
player loses in 1 moves
Game #: 7921
player loses in 1 moves
Game #: 7922
player busts and loses in 1 moves
Game #: 7923
player loses in 1 moves
Game #: 7924
dealer busts and player wins in 1 moves
Game #: 7925
player loses in 1 moves
Game #: 7926
player loses in 1 moves
Game #: 7927
player loses in 1 moves
Game #: 7928
player wins in 1 moves
Game #: 7929
player busts and loses in 1 moves
Game #: 7930
player busts and loses in 1 moves
Game #: 7931
player loses in 1 moves
Game #: 7932
dealer busts and player wins in 1 moves
Game #: 7933
dealer busts and player wins in 1 moves
Game #: 7934
player wins in 1 moves
Game #: 7935
dealer busts and player wins in 1 moves
Game #: 7936
player loses in 1 moves
Game #: 7937
player busts and loses in 1 moves
Game #: 7938
dealer busts and player wins in 1 moves
Game #: 7939
player loses in 1 moves
Game #: 7940
dealer busts and player wins in 2 moves
Game #: 7941
player busts and loses in 1 moves
Game #: 7942
player loses in 1 moves
Game #: 7943
player loses in 1 moves
Game #: 7944
dealer busts and player wins in 2 moves
Game #: 7945
player busts and loses in 1 moves
Game #: 7946
player busts and loses in 1 moves
Game #: 7947
player loses in 1 moves
Game #: 7948
draw in 1 moves
Game #: 7949
dealer busts and player wins in 1 moves
Game #: 7950
player loses in 1 moves
Game #: 7951
player loses in 1 moves
Game #: 7952
draw in 1 moves
Game #: 7953
dealer busts and player wins in 1 moves
Game #: 7954
player wins in 3 moves
Game #: 7955
player busts and loses in 1 moves
Game #: 7956
dealer busts and player wins in 1 moves
Game #: 7957
player busts and loses in 1 moves
Game #: 7958
player loses in 2 moves
Game #: 7959
player wins in 0 moves
Game #: 7960
player loses in 1 moves
Game #: 7961
player loses in 1 moves
Game #: 7962
player wins in 2 moves
Game #: 7963
player busts and loses in 1 moves
Game #: 7964
player loses in 1 moves
Game #: 7965
player loses in 1 moves
Game #: 7966
dealer busts and player wins in 1 moves
Game #: 7967
player loses in 1 moves
Game #: 7968
dealer busts and player wins in 1 moves
Game #: 7969
player busts and loses in 1 moves
Game #: 7970
player loses in 1 moves
Game #: 7971
player loses in 1 moves
Game #: 7972
player loses in 1 moves
Game #: 7973
player loses in 1 moves
Game #: 7974
dealer busts and player wins in 1 moves
Game #: 7975
player loses in 1 moves
Game #: 7976
draw in 2 moves
Game #: 7977
player wins in 0 moves
Game #: 7978
player wins in 1 moves
Game #: 7979
player loses in 1 moves
Game #: 7980
player busts and loses in 1 moves
Game #: 7981
dealer busts and player wins in 1 moves
Game #: 7982
dealer busts and player wins in 2 moves
Game #: 7983
draw in 1 moves
Game #: 7984
player loses in 1 moves
Game #: 7985
player loses in 1 moves
Game #: 7986
player wins in 2 moves
Game #: 7987
dealer busts and player wins in 2 moves
Game #: 7988
player busts and loses in 2 moves
Game #: 7989
dealer busts and player wins in 1 moves
Game #: 7990
player loses in 1 moves
Game #: 7991
player loses in 1 moves
Game #: 7992
player loses in 1 moves
Game #: 7993
player busts and loses in 2 moves
Game #: 7994
player loses in 1 moves
Game #: 7995
dealer busts and player wins in 1 moves
Game #: 7996
player loses in 2 moves
Game #: 7997
player wins in 1 moves
Game #: 7998
dealer busts and player wins in 1 moves
Game #: 7999
player loses in 1 moves
Game #: 8000
player wins in 1 moves
Game #: 8001
player loses in 1 moves
Game #: 8002
player loses in 1 moves
Game #: 8003
draw in 2 moves
Game #: 8004
player wins in 0 moves
Game #: 8005
player busts and loses in 1 moves
Game #: 8006
player busts and loses in 1 moves
Game #: 8007
player loses in 1 moves
Game #: 8008
player wins in 1 moves
Game #: 8009
player busts and loses in 1 moves
Game #: 8010
player wins in 0 moves
Game #: 8011
player loses in 1 moves
Game #: 8012
dealer busts and player wins in 1 moves
Game #: 8013
dealer busts and player wins in 2 moves
Game #: 8014
player wins in 1 moves
Game #: 8015
player wins in 1 moves
Game #: 8016
player loses in 1 moves
Game #: 8017
player wins in 0 moves
Game #: 8018
player busts and loses in 1 moves
Game #: 8019
player loses in 1 moves
Game #: 8020
player busts and loses in 2 moves
Game #: 8021
player wins in 0 moves
Game #: 8022
player busts and loses in 1 moves
Game #: 8023
dealer busts and player wins in 1 moves
Game #: 8024
dealer busts and player wins in 1 moves
Game #: 8025
player loses in 1 moves
Game #: 8026
dealer busts and player wins in 2 moves
Game #: 8027
player wins in 1 moves
Game #: 8028
player loses in 2 moves
Game #: 8029
player busts and loses in 1 moves
Game #: 8030
player busts and loses in 1 moves
Game #: 8031
dealer busts and player wins in 2 moves
Game #: 8032
player loses in 1 moves
Game #: 8033
player loses in 2 moves
Game #: 8034
player busts and loses in 1 moves
Game #: 8035
player wins in 0 moves
Game #: 8036
player loses in 2 moves
Game #: 8037
dealer busts and player wins in 2 moves
Game #: 8038
player busts and loses in 1 moves
Game #: 8039
player busts and loses in 1 moves
Game #: 8040
player busts and loses in 1 moves
Game #: 8041
player loses in 1 moves
Game #: 8042
player loses in 1 moves
Game #: 8043
player wins in 0 moves
Game #: 8044
player wins in 2 moves
Game #: 8045
player busts and loses in 1 moves
Game #: 8046
player loses in 2 moves
Game #: 8047
dealer busts and player wins in 2 moves
Game #: 8048
player loses in 2 moves
Game #: 8049
player loses in 1 moves
Game #: 8050
player wins in 1 moves
Game #: 8051
player loses in 1 moves
Game #: 8052
player wins in 1 moves
Game #: 8053
player wins in 0 moves
Game #: 8054
player busts and loses in 1 moves
Game #: 8055
player loses in 1 moves
Game #: 8056
player wins in 0 moves
Game #: 8057
dealer busts and player wins in 1 moves
Game #: 8058
player loses in 1 moves
Game #: 8059
dealer busts and player wins in 1 moves
Game #: 8060
player wins in 3 moves
Game #: 8061
player busts and loses in 2 moves
Game #: 8062
player wins in 1 moves
Game #: 8063
player loses in 1 moves
Game #: 8064
player loses in 1 moves
Game #: 8065
player wins in 0 moves
Game #: 8066
dealer busts and player wins in 1 moves
Game #: 8067
player wins in 0 moves
Game #: 8068
player busts and loses in 1 moves
Game #: 8069
player busts and loses in 1 moves
Game #: 8070
player loses in 1 moves
Game #: 8071
player busts and loses in 1 moves
Game #: 8072
player loses in 2 moves
Game #: 8073
dealer busts and player wins in 1 moves
Game #: 8074
dealer busts and player wins in 2 moves
Game #: 8075
player wins in 0 moves
Game #: 8076
player busts and loses in 1 moves
Game #: 8077
dealer busts and player wins in 1 moves
Game #: 8078
dealer busts and player wins in 1 moves
Game #: 8079
dealer busts and player wins in 2 moves
Game #: 8080
dealer busts and player wins in 2 moves
Game #: 8081
player wins in 1 moves
Game #: 8082
dealer busts and player wins in 2 moves
Game #: 8083
player wins in 2 moves
Game #: 8084
player loses in 1 moves
Game #: 8085
player busts and loses in 1 moves
Game #: 8086
dealer busts and player wins in 2 moves
Game #: 8087
player busts and loses in 2 moves
Game #: 8088
player wins in 1 moves
Game #: 8089
dealer busts and player wins in 1 moves
Game #: 8090
player loses in 1 moves
Game #: 8091
player loses in 1 moves
Game #: 8092
player loses in 2 moves
Game #: 8093
player loses in 1 moves
Game #: 8094
player loses in 1 moves
Game #: 8095
player loses in 1 moves
Game #: 8096
player loses in 1 moves
Game #: 8097
player loses in 1 moves
Game #: 8098
player wins in 1 moves
Game #: 8099
player loses in 1 moves
Game #: 8100
player loses in 1 moves
Game #: 8101
draw in 3 moves
Game #: 8102
player loses in 2 moves
Game #: 8103
player wins in 2 moves
Game #: 8104
dealer busts and player wins in 1 moves
Game #: 8105
player loses in 1 moves
Game #: 8106
player wins in 0 moves
Game #: 8107
player wins in 0 moves
Game #: 8108
dealer busts and player wins in 1 moves
Game #: 8109
dealer busts and player wins in 1 moves
Game #: 8110
player loses in 1 moves
Game #: 8111
player wins in 1 moves
Game #: 8112
player wins in 1 moves
Game #: 8113
dealer busts and player wins in 1 moves
Game #: 8114
player wins in 1 moves
Game #: 8115
player loses in 1 moves
Game #: 8116
player loses in 1 moves
Game #: 8117
player wins in 1 moves
Game #: 8118
player loses in 1 moves
Game #: 8119
player busts and loses in 1 moves
Game #: 8120
player loses in 1 moves
Game #: 8121
player wins in 1 moves
Game #: 8122
player loses in 1 moves
Game #: 8123
player wins in 1 moves
Game #: 8124
player busts and loses in 1 moves
Game #: 8125
player loses in 1 moves
Game #: 8126
player wins in 1 moves
Game #: 8127
player wins in 0 moves
Game #: 8128
player loses in 1 moves
Game #: 8129
player loses in 1 moves
Game #: 8130
player busts and loses in 1 moves
Game #: 8131
player wins in 1 moves
Game #: 8132
player wins in 1 moves
Game #: 8133
dealer busts and player wins in 1 moves
Game #: 8134
player loses in 1 moves
Game #: 8135
player loses in 1 moves
Game #: 8136
dealer busts and player wins in 1 moves
Game #: 8137
dealer busts and player wins in 1 moves
Game #: 8138
player loses in 1 moves
Game #: 8139
player loses in 1 moves
Game #: 8140
dealer busts and player wins in 1 moves
Game #: 8141
player busts and loses in 1 moves
Game #: 8142
player loses in 2 moves
Game #: 8143
dealer busts and player wins in 1 moves
Game #: 8144
player loses in 2 moves
Game #: 8145
player loses in 2 moves
Game #: 8146
player loses in 1 moves
Game #: 8147
player busts and loses in 1 moves
Game #: 8148
player busts and loses in 1 moves
Game #: 8149
player loses in 1 moves
Game #: 8150
player wins in 1 moves
Game #: 8151
draw in 1 moves
Game #: 8152
player busts and loses in 1 moves
Game #: 8153
player busts and loses in 1 moves
Game #: 8154
player loses in 1 moves
Game #: 8155
dealer busts and player wins in 1 moves
Game #: 8156
player busts and loses in 1 moves
Game #: 8157
player wins in 1 moves
Game #: 8158
player loses in 1 moves
Game #: 8159
player loses in 1 moves
Game #: 8160
dealer busts and player wins in 1 moves
Game #: 8161
dealer busts and player wins in 1 moves
Game #: 8162
player loses in 1 moves
Game #: 8163
dealer busts and player wins in 1 moves
Game #: 8164
dealer busts and player wins in 1 moves
Game #: 8165
player busts and loses in 1 moves
Game #: 8166
player loses in 1 moves
Game #: 8167
player loses in 1 moves
Game #: 8168
draw in 1 moves
Game #: 8169
player loses in 1 moves
Game #: 8170
player loses in 1 moves
Game #: 8171
player loses in 1 moves
Game #: 8172
player busts and loses in 1 moves
Game #: 8173
player loses in 1 moves
Game #: 8174
player loses in 1 moves
Game #: 8175
player busts and loses in 1 moves
Game #: 8176
player loses in 2 moves
Game #: 8177
dealer busts and player wins in 1 moves
Game #: 8178
player loses in 1 moves
Game #: 8179
player loses in 1 moves
Game #: 8180
player wins in 3 moves
Game #: 8181
dealer busts and player wins in 1 moves
Game #: 8182
player busts and loses in 1 moves
Game #: 8183
player loses in 1 moves
Game #: 8184
player loses in 1 moves
Game #: 8185
player loses in 1 moves
Game #: 8186
player wins in 1 moves
Game #: 8187
dealer busts and player wins in 1 moves
Game #: 8188
dealer busts and player wins in 1 moves
Game #: 8189
player busts and loses in 2 moves
Game #: 8190
player loses in 1 moves
Game #: 8191
player wins in 0 moves
Game #: 8192
draw in 1 moves
Game #: 8193
player loses in 1 moves
Game #: 8194
player wins in 0 moves
Game #: 8195
player wins in 0 moves
Game #: 8196
player wins in 0 moves
Game #: 8197
player loses in 1 moves
Game #: 8198
player busts and loses in 1 moves
Game #: 8199
dealer busts and player wins in 1 moves
Game #: 8200
draw in 1 moves
Game #: 8201
player wins in 1 moves
Game #: 8202
player loses in 1 moves
Game #: 8203
player wins in 1 moves
Game #: 8204
player busts and loses in 1 moves
Game #: 8205
player loses in 1 moves
Game #: 8206
player loses in 3 moves
Game #: 8207
player loses in 1 moves
Game #: 8208
dealer busts and player wins in 1 moves
Game #: 8209
player loses in 1 moves
Game #: 8210
player busts and loses in 1 moves
Game #: 8211
player loses in 1 moves
Game #: 8212
player busts and loses in 2 moves
Game #: 8213
player loses in 2 moves
Game #: 8214
player wins in 0 moves
Game #: 8215
player loses in 1 moves
Game #: 8216
player loses in 1 moves
Game #: 8217
player busts and loses in 1 moves
Game #: 8218
player busts and loses in 1 moves
Game #: 8219
player busts and loses in 1 moves
Game #: 8220
draw in 1 moves
Game #: 8221
dealer busts and player wins in 2 moves
Game #: 8222
player loses in 1 moves
Game #: 8223
player loses in 1 moves
Game #: 8224
dealer busts and player wins in 1 moves
Game #: 8225
draw in 1 moves
Game #: 8226
player loses in 1 moves
Game #: 8227
player wins in 1 moves
Game #: 8228
draw in 2 moves
Game #: 8229
player busts and loses in 1 moves
Game #: 8230
player busts and loses in 1 moves
Game #: 8231
player wins in 1 moves
Game #: 8232
player loses in 1 moves
Game #: 8233
player loses in 1 moves
Game #: 8234
player busts and loses in 1 moves
Game #: 8235
player busts and loses in 1 moves
Game #: 8236
draw in 1 moves
Game #: 8237
player loses in 1 moves
Game #: 8238
player wins in 2 moves
Game #: 8239
player busts and loses in 1 moves
Game #: 8240
player wins in 0 moves
Game #: 8241
player wins in 1 moves
Game #: 8242
dealer busts and player wins in 3 moves
Game #: 8243
player busts and loses in 3 moves
Game #: 8244
player loses in 1 moves
Game #: 8245
player loses in 2 moves
Game #: 8246
player busts and loses in 1 moves
Game #: 8247
player loses in 1 moves
Game #: 8248
player loses in 1 moves
Game #: 8249
player busts and loses in 1 moves
Game #: 8250
player loses in 1 moves
Game #: 8251
player wins in 0 moves
Game #: 8252
player wins in 2 moves
Game #: 8253
player wins in 0 moves
Game #: 8254
player loses in 1 moves
Game #: 8255
player loses in 1 moves
Game #: 8256
player loses in 1 moves
Game #: 8257
player loses in 1 moves
Game #: 8258
player wins in 1 moves
Game #: 8259
player wins in 3 moves
Game #: 8260
player wins in 2 moves
Game #: 8261
player loses in 1 moves
Game #: 8262
dealer busts and player wins in 1 moves
Game #: 8263
player wins in 0 moves
Game #: 8264
player wins in 0 moves
Game #: 8265
player wins in 0 moves
Game #: 8266
player wins in 2 moves
Game #: 8267
player busts and loses in 2 moves
Game #: 8268
player busts and loses in 1 moves
Game #: 8269
draw in 1 moves
Game #: 8270
player wins in 1 moves
Game #: 8271
player loses in 1 moves
Game #: 8272
player loses in 1 moves
Game #: 8273
draw in 1 moves
Game #: 8274
player loses in 1 moves
Game #: 8275
draw in 2 moves
Game #: 8276
player busts and loses in 1 moves
Game #: 8277
dealer busts and player wins in 1 moves
Game #: 8278
dealer busts and player wins in 1 moves
Game #: 8279
player loses in 1 moves
Game #: 8280
player loses in 1 moves
Game #: 8281
player busts and loses in 1 moves
Game #: 8282
dealer busts and player wins in 1 moves
Game #: 8283
player loses in 1 moves
Game #: 8284
player loses in 1 moves
Game #: 8285
draw in 3 moves
Game #: 8286
player wins in 1 moves
Game #: 8287
player loses in 1 moves
Game #: 8288
dealer busts and player wins in 1 moves
Game #: 8289
player wins in 1 moves
Game #: 8290
dealer busts and player wins in 1 moves
Game #: 8291
dealer busts and player wins in 1 moves
Game #: 8292
player loses in 1 moves
Game #: 8293
player wins in 1 moves
Game #: 8294
player loses in 1 moves
Game #: 8295
dealer busts and player wins in 1 moves
Game #: 8296
player busts and loses in 2 moves
Game #: 8297
player wins in 1 moves
Game #: 8298
draw in 1 moves
Game #: 8299
dealer busts and player wins in 2 moves
Game #: 8300
player loses in 1 moves
Game #: 8301
player busts and loses in 1 moves
Game #: 8302
dealer busts and player wins in 1 moves
Game #: 8303
player loses in 1 moves
Game #: 8304
player wins in 1 moves
Game #: 8305
dealer busts and player wins in 1 moves
Game #: 8306
dealer busts and player wins in 1 moves
Game #: 8307
player busts and loses in 1 moves
Game #: 8308
player loses in 1 moves
Game #: 8309
player busts and loses in 1 moves
Game #: 8310
player loses in 1 moves
Game #: 8311
player wins in 2 moves
Game #: 8312
player wins in 1 moves
Game #: 8313
dealer busts and player wins in 1 moves
Game #: 8314
player loses in 1 moves
Game #: 8315
player busts and loses in 1 moves
Game #: 8316
dealer busts and player wins in 1 moves
Game #: 8317
player loses in 1 moves
Game #: 8318
player busts and loses in 1 moves
Game #: 8319
player wins in 0 moves
Game #: 8320
player loses in 2 moves
Game #: 8321
draw in 1 moves
Game #: 8322
dealer busts and player wins in 1 moves
Game #: 8323
player loses in 1 moves
Game #: 8324
player wins in 0 moves
Game #: 8325
player wins in 1 moves
Game #: 8326
player busts and loses in 1 moves
Game #: 8327
player loses in 1 moves
Game #: 8328
player wins in 1 moves
Game #: 8329
player loses in 1 moves
Game #: 8330
draw in 2 moves
Game #: 8331
dealer busts and player wins in 1 moves
Game #: 8332
player loses in 2 moves
Game #: 8333
player loses in 1 moves
Game #: 8334
player busts and loses in 1 moves
Game #: 8335
player wins in 1 moves
Game #: 8336
player loses in 1 moves
Game #: 8337
draw in 2 moves
Game #: 8338
player loses in 1 moves
Game #: 8339
dealer busts and player wins in 1 moves
Game #: 8340
player wins in 1 moves
Game #: 8341
player loses in 1 moves
Game #: 8342
player wins in 0 moves
Game #: 8343
dealer busts and player wins in 1 moves
Game #: 8344
player wins in 0 moves
Game #: 8345
draw in 2 moves
Game #: 8346
player loses in 2 moves
Game #: 8347
player wins in 0 moves
Game #: 8348
player loses in 1 moves
Game #: 8349
dealer busts and player wins in 2 moves
Game #: 8350
player loses in 1 moves
Game #: 8351
player busts and loses in 1 moves
Game #: 8352
player wins in 1 moves
Game #: 8353
dealer busts and player wins in 1 moves
Game #: 8354
player wins in 0 moves
Game #: 8355
draw in 1 moves
Game #: 8356
player loses in 1 moves
Game #: 8357
player busts and loses in 1 moves
Game #: 8358
player wins in 1 moves
Game #: 8359
player loses in 1 moves
Game #: 8360
player wins in 1 moves
Game #: 8361
player wins in 0 moves
Game #: 8362
player busts and loses in 1 moves
Game #: 8363
player wins in 0 moves
Game #: 8364
dealer busts and player wins in 1 moves
Game #: 8365
dealer busts and player wins in 2 moves
Game #: 8366
player loses in 1 moves
Game #: 8367
player wins in 1 moves
Game #: 8368
player loses in 2 moves
Game #: 8369
player busts and loses in 1 moves
Game #: 8370
player loses in 1 moves
Game #: 8371
player loses in 1 moves
Game #: 8372
dealer busts and player wins in 1 moves
Game #: 8373
player loses in 1 moves
Game #: 8374
player wins in 0 moves
Game #: 8375
player busts and loses in 1 moves
Game #: 8376
player loses in 1 moves
Game #: 8377
player wins in 0 moves
Game #: 8378
dealer busts and player wins in 1 moves
Game #: 8379
dealer busts and player wins in 1 moves
Game #: 8380
player loses in 1 moves
Game #: 8381
player loses in 1 moves
Game #: 8382
player loses in 1 moves
Game #: 8383
draw in 1 moves
Game #: 8384
player busts and loses in 1 moves
Game #: 8385
player busts and loses in 1 moves
Game #: 8386
player loses in 1 moves
Game #: 8387
player wins in 0 moves
Game #: 8388
player wins in 0 moves
Game #: 8389
dealer busts and player wins in 1 moves
Game #: 8390
player wins in 2 moves
Game #: 8391
player loses in 1 moves
Game #: 8392
player wins in 0 moves
Game #: 8393
player loses in 1 moves
Game #: 8394
player loses in 1 moves
Game #: 8395
dealer busts and player wins in 1 moves
Game #: 8396
player loses in 1 moves
Game #: 8397
dealer busts and player wins in 1 moves
Game #: 8398
dealer busts and player wins in 1 moves
Game #: 8399
dealer busts and player wins in 1 moves
Game #: 8400
player loses in 1 moves
Game #: 8401
draw in 1 moves
Game #: 8402
player wins in 0 moves
Game #: 8403
player loses in 1 moves
Game #: 8404
player loses in 1 moves
Game #: 8405
player loses in 1 moves
Game #: 8406
player loses in 1 moves
Game #: 8407
dealer busts and player wins in 2 moves
Game #: 8408
player busts and loses in 1 moves
Game #: 8409
player loses in 1 moves
Game #: 8410
player busts and loses in 1 moves
Game #: 8411
player wins in 1 moves
Game #: 8412
draw in 1 moves
Game #: 8413
player busts and loses in 1 moves
Game #: 8414
player busts and loses in 1 moves
Game #: 8415
player loses in 1 moves
Game #: 8416
player loses in 1 moves
Game #: 8417
player busts and loses in 1 moves
Game #: 8418
dealer busts and player wins in 1 moves
Game #: 8419
player loses in 1 moves
Game #: 8420
player busts and loses in 1 moves
Game #: 8421
draw in 1 moves
Game #: 8422
draw in 1 moves
Game #: 8423
player wins in 1 moves
Game #: 8424
dealer busts and player wins in 1 moves
Game #: 8425
draw in 1 moves
Game #: 8426
draw in 1 moves
Game #: 8427
player wins in 2 moves
Game #: 8428
player loses in 1 moves
Game #: 8429
player loses in 1 moves
Game #: 8430
dealer busts and player wins in 1 moves
Game #: 8431
player busts and loses in 2 moves
Game #: 8432
player loses in 1 moves
Game #: 8433
player busts and loses in 1 moves
Game #: 8434
dealer busts and player wins in 1 moves
Game #: 8435
player loses in 1 moves
Game #: 8436
player busts and loses in 1 moves
Game #: 8437
dealer busts and player wins in 1 moves
Game #: 8438
player wins in 0 moves
Game #: 8439
player loses in 1 moves
Game #: 8440
player wins in 1 moves
Game #: 8441
player loses in 1 moves
Game #: 8442
player busts and loses in 2 moves
Game #: 8443
player loses in 1 moves
Game #: 8444
player busts and loses in 1 moves
Game #: 8445
player wins in 1 moves
Game #: 8446
dealer busts and player wins in 1 moves
Game #: 8447
player wins in 0 moves
Game #: 8448
player loses in 1 moves
Game #: 8449
dealer busts and player wins in 1 moves
Game #: 8450
player wins in 0 moves
Game #: 8451
dealer busts and player wins in 1 moves
Game #: 8452
draw in 1 moves
Game #: 8453
player loses in 1 moves
Game #: 8454
draw in 1 moves
Game #: 8455
player busts and loses in 1 moves
Game #: 8456
player loses in 2 moves
Game #: 8457
dealer busts and player wins in 1 moves
Game #: 8458
player loses in 3 moves
Game #: 8459
player wins in 0 moves
Game #: 8460
dealer busts and player wins in 1 moves
Game #: 8461
draw in 1 moves
Game #: 8462
player wins in 0 moves
Game #: 8463
player loses in 1 moves
Game #: 8464
dealer busts and player wins in 1 moves
Game #: 8465
player loses in 1 moves
Game #: 8466
player loses in 3 moves
Game #: 8467
draw in 1 moves
Game #: 8468
dealer busts and player wins in 1 moves
Game #: 8469
player loses in 2 moves
Game #: 8470
player loses in 1 moves
Game #: 8471
dealer busts and player wins in 1 moves
Game #: 8472
player loses in 1 moves
Game #: 8473
draw in 1 moves
Game #: 8474
draw in 1 moves
Game #: 8475
player loses in 1 moves
Game #: 8476
player loses in 1 moves
Game #: 8477
player busts and loses in 1 moves
Game #: 8478
player busts and loses in 1 moves
Game #: 8479
player loses in 1 moves
Game #: 8480
player wins in 1 moves
Game #: 8481
draw in 1 moves
Game #: 8482
player wins in 0 moves
Game #: 8483
player loses in 1 moves
Game #: 8484
player wins in 1 moves
Game #: 8485
player wins in 1 moves
Game #: 8486
player busts and loses in 1 moves
Game #: 8487
dealer busts and player wins in 1 moves
Game #: 8488
player loses in 1 moves
Game #: 8489
player wins in 1 moves
Game #: 8490
player wins in 1 moves
Game #: 8491
player loses in 1 moves
Game #: 8492
player loses in 1 moves
Game #: 8493
player loses in 1 moves
Game #: 8494
draw in 1 moves
Game #: 8495
dealer busts and player wins in 1 moves
Game #: 8496
player loses in 1 moves
Game #: 8497
player wins in 1 moves
Game #: 8498
player loses in 1 moves
Game #: 8499
player loses in 1 moves
Game #: 8500
player loses in 1 moves
Game #: 8501
player wins in 0 moves
Game #: 8502
dealer busts and player wins in 2 moves
Game #: 8503
player loses in 1 moves
Game #: 8504
player loses in 1 moves
Game #: 8505
player loses in 1 moves
Game #: 8506
player busts and loses in 1 moves
Game #: 8507
player loses in 1 moves
Game #: 8508
player busts and loses in 2 moves
Game #: 8509
draw in 1 moves
Game #: 8510
player busts and loses in 1 moves
Game #: 8511
player wins in 1 moves
Game #: 8512
player loses in 1 moves
Game #: 8513
player loses in 1 moves
Game #: 8514
draw in 1 moves
Game #: 8515
dealer busts and player wins in 1 moves
Game #: 8516
player wins in 1 moves
Game #: 8517
player loses in 1 moves
Game #: 8518
player wins in 1 moves
Game #: 8519
player loses in 1 moves
Game #: 8520
player busts and loses in 1 moves
Game #: 8521
player wins in 0 moves
Game #: 8522
player loses in 1 moves
Game #: 8523
player busts and loses in 1 moves
Game #: 8524
player loses in 1 moves
Game #: 8525
player busts and loses in 1 moves
Game #: 8526
dealer busts and player wins in 1 moves
Game #: 8527
player wins in 0 moves
Game #: 8528
player busts and loses in 1 moves
Game #: 8529
player loses in 1 moves
Game #: 8530
player loses in 1 moves
Game #: 8531
player loses in 1 moves
Game #: 8532
player busts and loses in 3 moves
Game #: 8533
player loses in 1 moves
Game #: 8534
player wins in 0 moves
Game #: 8535
player wins in 0 moves
Game #: 8536
player loses in 1 moves
Game #: 8537
player busts and loses in 1 moves
Game #: 8538
player loses in 1 moves
Game #: 8539
draw in 1 moves
Game #: 8540
player loses in 1 moves
Game #: 8541
dealer busts and player wins in 1 moves
Game #: 8542
player wins in 0 moves
Game #: 8543
dealer busts and player wins in 1 moves
Game #: 8544
player loses in 1 moves
Game #: 8545
dealer busts and player wins in 1 moves
Game #: 8546
player loses in 1 moves
Game #: 8547
dealer busts and player wins in 1 moves
Game #: 8548
dealer busts and player wins in 1 moves
Game #: 8549
dealer busts and player wins in 1 moves
Game #: 8550
player loses in 1 moves
Game #: 8551
draw in 1 moves
Game #: 8552
player busts and loses in 1 moves
Game #: 8553
player wins in 0 moves
Game #: 8554
player loses in 1 moves
Game #: 8555
player busts and loses in 1 moves
Game #: 8556
dealer busts and player wins in 1 moves
Game #: 8557
draw in 1 moves
Game #: 8558
draw in 1 moves
Game #: 8559
player loses in 1 moves
Game #: 8560
player wins in 1 moves
Game #: 8561
player loses in 1 moves
Game #: 8562
draw in 2 moves
Game #: 8563
player wins in 0 moves
Game #: 8564
player loses in 1 moves
Game #: 8565
player busts and loses in 1 moves
Game #: 8566
dealer busts and player wins in 1 moves
Game #: 8567
player loses in 1 moves
Game #: 8568
player loses in 2 moves
Game #: 8569
draw in 1 moves
Game #: 8570
player wins in 1 moves
Game #: 8571
dealer busts and player wins in 2 moves
Game #: 8572
player wins in 2 moves
Game #: 8573
dealer busts and player wins in 1 moves
Game #: 8574
player wins in 1 moves
Game #: 8575
player wins in 0 moves
Game #: 8576
player loses in 1 moves
Game #: 8577
player busts and loses in 1 moves
Game #: 8578
player busts and loses in 1 moves
Game #: 8579
player wins in 1 moves
Game #: 8580
dealer busts and player wins in 1 moves
Game #: 8581
player loses in 1 moves
Game #: 8582
player wins in 1 moves
Game #: 8583
player loses in 1 moves
Game #: 8584
player busts and loses in 1 moves
Game #: 8585
player wins in 0 moves
Game #: 8586
dealer busts and player wins in 1 moves
Game #: 8587
player wins in 1 moves
Game #: 8588
player loses in 1 moves
Game #: 8589
draw in 1 moves
Game #: 8590
dealer busts and player wins in 1 moves
Game #: 8591
player loses in 1 moves
Game #: 8592
draw in 2 moves
Game #: 8593
dealer busts and player wins in 1 moves
Game #: 8594
dealer busts and player wins in 1 moves
Game #: 8595
player wins in 0 moves
Game #: 8596
player wins in 0 moves
Game #: 8597
player loses in 1 moves
Game #: 8598
player busts and loses in 1 moves
Game #: 8599
dealer busts and player wins in 2 moves
Game #: 8600
dealer busts and player wins in 1 moves
Game #: 8601
draw in 3 moves
Game #: 8602
player loses in 1 moves
Game #: 8603
draw in 1 moves
Game #: 8604
player loses in 1 moves
Game #: 8605
player loses in 1 moves
Game #: 8606
player busts and loses in 1 moves
Game #: 8607
player wins in 0 moves
Game #: 8608
player loses in 2 moves
Game #: 8609
player wins in 0 moves
Game #: 8610
player wins in 0 moves
Game #: 8611
player wins in 2 moves
Game #: 8612
player loses in 1 moves
Game #: 8613
player wins in 1 moves
Game #: 8614
dealer busts and player wins in 1 moves
Game #: 8615
player loses in 1 moves
Game #: 8616
draw in 1 moves
Game #: 8617
dealer busts and player wins in 1 moves
Game #: 8618
dealer busts and player wins in 2 moves
Game #: 8619
draw in 2 moves
Game #: 8620
player loses in 1 moves
Game #: 8621
player loses in 2 moves
Game #: 8622
player loses in 1 moves
Game #: 8623
player loses in 1 moves
Game #: 8624
dealer busts and player wins in 3 moves
Game #: 8625
dealer busts and player wins in 2 moves
Game #: 8626
player wins in 1 moves
Game #: 8627
player wins in 1 moves
Game #: 8628
player loses in 1 moves
Game #: 8629
player loses in 1 moves
Game #: 8630
player wins in 2 moves
Game #: 8631
player loses in 1 moves
Game #: 8632
player wins in 1 moves
Game #: 8633
player loses in 2 moves
Game #: 8634
dealer busts and player wins in 1 moves
Game #: 8635
dealer busts and player wins in 1 moves
Game #: 8636
player busts and loses in 1 moves
Game #: 8637
dealer busts and player wins in 1 moves
Game #: 8638
player busts and loses in 2 moves
Game #: 8639
player loses in 2 moves
Game #: 8640
dealer busts and player wins in 1 moves
Game #: 8641
player loses in 1 moves
Game #: 8642
player loses in 1 moves
Game #: 8643
player loses in 1 moves
Game #: 8644
player loses in 1 moves
Game #: 8645
player loses in 1 moves
Game #: 8646
player loses in 1 moves
Game #: 8647
player busts and loses in 1 moves
Game #: 8648
draw in 1 moves
Game #: 8649
player loses in 3 moves
Game #: 8650
dealer busts and player wins in 1 moves
Game #: 8651
dealer busts and player wins in 1 moves
Game #: 8652
player loses in 1 moves
Game #: 8653
player loses in 1 moves
Game #: 8654
player wins in 1 moves
Game #: 8655
player loses in 1 moves
Game #: 8656
player busts and loses in 1 moves
Game #: 8657
player busts and loses in 2 moves
Game #: 8658
player wins in 0 moves
Game #: 8659
player wins in 0 moves
Game #: 8660
player loses in 2 moves
Game #: 8661
player busts and loses in 1 moves
Game #: 8662
player wins in 1 moves
Game #: 8663
player wins in 1 moves
Game #: 8664
player loses in 1 moves
Game #: 8665
player loses in 1 moves
Game #: 8666
dealer busts and player wins in 1 moves
Game #: 8667
player busts and loses in 1 moves
Game #: 8668
player loses in 1 moves
Game #: 8669
player loses in 2 moves
Game #: 8670
player busts and loses in 1 moves
Game #: 8671
player wins in 1 moves
Game #: 8672
dealer busts and player wins in 1 moves
Game #: 8673
dealer busts and player wins in 1 moves
Game #: 8674
player wins in 0 moves
Game #: 8675
player wins in 0 moves
Game #: 8676
dealer busts and player wins in 1 moves
Game #: 8677
dealer busts and player wins in 1 moves
Game #: 8678
dealer busts and player wins in 1 moves
Game #: 8679
player busts and loses in 1 moves
Game #: 8680
player busts and loses in 2 moves
Game #: 8681
dealer busts and player wins in 1 moves
Game #: 8682
player loses in 1 moves
Game #: 8683
dealer busts and player wins in 1 moves
Game #: 8684
player wins in 1 moves
Game #: 8685
player loses in 1 moves
Game #: 8686
player loses in 2 moves
Game #: 8687
dealer busts and player wins in 1 moves
Game #: 8688
dealer busts and player wins in 1 moves
Game #: 8689
player wins in 0 moves
Game #: 8690
player wins in 0 moves
Game #: 8691
dealer busts and player wins in 1 moves
Game #: 8692
player loses in 2 moves
Game #: 8693
dealer busts and player wins in 2 moves
Game #: 8694
dealer busts and player wins in 1 moves
Game #: 8695
player wins in 2 moves
Game #: 8696
player loses in 1 moves
Game #: 8697
player wins in 0 moves
Game #: 8698
player loses in 1 moves
Game #: 8699
player wins in 2 moves
Game #: 8700
player busts and loses in 1 moves
Game #: 8701
player wins in 1 moves
Game #: 8702
player busts and loses in 1 moves
Game #: 8703
player busts and loses in 1 moves
Game #: 8704
player loses in 1 moves
Game #: 8705
player wins in 0 moves
Game #: 8706
player busts and loses in 1 moves
Game #: 8707
draw in 2 moves
Game #: 8708
dealer busts and player wins in 1 moves
Game #: 8709
draw in 2 moves
Game #: 8710
draw in 1 moves
Game #: 8711
player busts and loses in 1 moves
Game #: 8712
player busts and loses in 1 moves
Game #: 8713
dealer busts and player wins in 1 moves
Game #: 8714
player loses in 1 moves
Game #: 8715
dealer busts and player wins in 1 moves
Game #: 8716
player loses in 2 moves
Game #: 8717
player loses in 1 moves
Game #: 8718
player loses in 1 moves
Game #: 8719
player loses in 1 moves
Game #: 8720
player wins in 0 moves
Game #: 8721
dealer busts and player wins in 1 moves
Game #: 8722
player busts and loses in 1 moves
Game #: 8723
player busts and loses in 1 moves
Game #: 8724
player busts and loses in 2 moves
Game #: 8725
player wins in 0 moves
Game #: 8726
player wins in 3 moves
Game #: 8727
player loses in 1 moves
Game #: 8728
player loses in 1 moves
Game #: 8729
player loses in 1 moves
Game #: 8730
player busts and loses in 1 moves
Game #: 8731
player busts and loses in 1 moves
Game #: 8732
player loses in 1 moves
Game #: 8733
dealer busts and player wins in 1 moves
Game #: 8734
player busts and loses in 2 moves
Game #: 8735
dealer busts and player wins in 1 moves
Game #: 8736
player loses in 2 moves
Game #: 8737
player wins in 1 moves
Game #: 8738
player wins in 1 moves
Game #: 8739
dealer busts and player wins in 1 moves
Game #: 8740
player wins in 1 moves
Game #: 8741
player loses in 1 moves
Game #: 8742
dealer busts and player wins in 1 moves
Game #: 8743
player loses in 1 moves
Game #: 8744
player loses in 1 moves
Game #: 8745
player busts and loses in 1 moves
Game #: 8746
player busts and loses in 2 moves
Game #: 8747
player busts and loses in 1 moves
Game #: 8748
player loses in 1 moves
Game #: 8749
player busts and loses in 1 moves
Game #: 8750
player loses in 2 moves
Game #: 8751
dealer busts and player wins in 1 moves
Game #: 8752
player loses in 2 moves
Game #: 8753
dealer busts and player wins in 1 moves
Game #: 8754
player loses in 1 moves
Game #: 8755
player busts and loses in 1 moves
Game #: 8756
player wins in 1 moves
Game #: 8757
player loses in 1 moves
Game #: 8758
player loses in 1 moves
Game #: 8759
player wins in 1 moves
Game #: 8760
player wins in 1 moves
Game #: 8761
player loses in 1 moves
Game #: 8762
player busts and loses in 1 moves
Game #: 8763
player loses in 1 moves
Game #: 8764
dealer busts and player wins in 1 moves
Game #: 8765
draw in 2 moves
Game #: 8766
draw in 1 moves
Game #: 8767
player loses in 1 moves
Game #: 8768
player loses in 1 moves
Game #: 8769
dealer busts and player wins in 1 moves
Game #: 8770
dealer busts and player wins in 1 moves
Game #: 8771
player busts and loses in 1 moves
Game #: 8772
player wins in 0 moves
Game #: 8773
dealer busts and player wins in 3 moves
Game #: 8774
player loses in 1 moves
Game #: 8775
player busts and loses in 2 moves
Game #: 8776
player loses in 1 moves
Game #: 8777
player busts and loses in 1 moves
Game #: 8778
dealer busts and player wins in 1 moves
Game #: 8779
dealer busts and player wins in 1 moves
Game #: 8780
dealer busts and player wins in 1 moves
Game #: 8781
player wins in 0 moves
Game #: 8782
player busts and loses in 1 moves
Game #: 8783
dealer busts and player wins in 1 moves
Game #: 8784
player wins in 1 moves
Game #: 8785
player busts and loses in 1 moves
Game #: 8786
player loses in 1 moves
Game #: 8787
player busts and loses in 1 moves
Game #: 8788
player loses in 1 moves
Game #: 8789
player wins in 1 moves
Game #: 8790
player busts and loses in 1 moves
Game #: 8791
player loses in 1 moves
Game #: 8792
player loses in 1 moves
Game #: 8793
player wins in 1 moves
Game #: 8794
player wins in 0 moves
Game #: 8795
player busts and loses in 2 moves
Game #: 8796
draw in 1 moves
Game #: 8797
dealer busts and player wins in 1 moves
Game #: 8798
dealer busts and player wins in 1 moves
Game #: 8799
player loses in 1 moves
Game #: 8800
player busts and loses in 1 moves
Game #: 8801
dealer busts and player wins in 1 moves
Game #: 8802
dealer busts and player wins in 1 moves
Game #: 8803
player loses in 1 moves
Game #: 8804
player wins in 1 moves
Game #: 8805
dealer busts and player wins in 1 moves
Game #: 8806
player wins in 1 moves
Game #: 8807
player loses in 1 moves
Game #: 8808
player loses in 1 moves
Game #: 8809
player loses in 1 moves
Game #: 8810
draw in 2 moves
Game #: 8811
player loses in 1 moves
Game #: 8812
player loses in 1 moves
Game #: 8813
player loses in 1 moves
Game #: 8814
player wins in 0 moves
Game #: 8815
dealer busts and player wins in 1 moves
Game #: 8816
player loses in 2 moves
Game #: 8817
player loses in 1 moves
Game #: 8818
player loses in 1 moves
Game #: 8819
player busts and loses in 1 moves
Game #: 8820
player loses in 1 moves
Game #: 8821
player loses in 1 moves
Game #: 8822
player loses in 1 moves
Game #: 8823
player wins in 0 moves
Game #: 8824
player loses in 2 moves
Game #: 8825
player loses in 1 moves
Game #: 8826
draw in 1 moves
Game #: 8827
dealer busts and player wins in 1 moves
Game #: 8828
player loses in 1 moves
Game #: 8829
draw in 1 moves
Game #: 8830
dealer busts and player wins in 1 moves
Game #: 8831
player wins in 0 moves
Game #: 8832
player wins in 0 moves
Game #: 8833
player loses in 1 moves
Game #: 8834
player busts and loses in 1 moves
Game #: 8835
player loses in 1 moves
Game #: 8836
player wins in 1 moves
Game #: 8837
dealer busts and player wins in 1 moves
Game #: 8838
dealer busts and player wins in 1 moves
Game #: 8839
player busts and loses in 2 moves
Game #: 8840
dealer busts and player wins in 1 moves
Game #: 8841
player loses in 2 moves
Game #: 8842
player loses in 2 moves
Game #: 8843
player loses in 1 moves
Game #: 8844
player wins in 0 moves
Game #: 8845
player wins in 1 moves
Game #: 8846
player wins in 2 moves
Game #: 8847
dealer busts and player wins in 1 moves
Game #: 8848
draw in 1 moves
Game #: 8849
player wins in 3 moves
Game #: 8850
player wins in 2 moves
Game #: 8851
dealer busts and player wins in 1 moves
Game #: 8852
dealer busts and player wins in 1 moves
Game #: 8853
player loses in 2 moves
Game #: 8854
player wins in 3 moves
Game #: 8855
player loses in 1 moves
Game #: 8856
player busts and loses in 1 moves
Game #: 8857
player wins in 1 moves
Game #: 8858
dealer busts and player wins in 2 moves
Game #: 8859
player wins in 1 moves
Game #: 8860
player loses in 1 moves
Game #: 8861
player loses in 1 moves
Game #: 8862
dealer busts and player wins in 1 moves
Game #: 8863
player busts and loses in 1 moves
Game #: 8864
draw in 1 moves
Game #: 8865
player loses in 1 moves
Game #: 8866
player busts and loses in 1 moves
Game #: 8867
player wins in 0 moves
Game #: 8868
draw in 1 moves
Game #: 8869
dealer busts and player wins in 1 moves
Game #: 8870
player loses in 1 moves
Game #: 8871
player wins in 1 moves
Game #: 8872
player loses in 1 moves
Game #: 8873
player busts and loses in 1 moves
Game #: 8874
player wins in 2 moves
Game #: 8875
player loses in 1 moves
Game #: 8876
player busts and loses in 1 moves
Game #: 8877
dealer busts and player wins in 1 moves
Game #: 8878
dealer busts and player wins in 1 moves
Game #: 8879
dealer busts and player wins in 1 moves
Game #: 8880
player loses in 1 moves
Game #: 8881
player wins in 2 moves
Game #: 8882
player loses in 1 moves
Game #: 8883
player loses in 1 moves
Game #: 8884
player loses in 1 moves
Game #: 8885
dealer busts and player wins in 1 moves
Game #: 8886
player loses in 1 moves
Game #: 8887
player busts and loses in 1 moves
Game #: 8888
player wins in 1 moves
Game #: 8889
draw in 2 moves
Game #: 8890
player wins in 1 moves
Game #: 8891
dealer busts and player wins in 1 moves
Game #: 8892
player loses in 1 moves
Game #: 8893
dealer busts and player wins in 1 moves
Game #: 8894
dealer busts and player wins in 1 moves
Game #: 8895
player wins in 1 moves
Game #: 8896
player busts and loses in 1 moves
Game #: 8897
player wins in 0 moves
Game #: 8898
player loses in 1 moves
Game #: 8899
player busts and loses in 1 moves
Game #: 8900
draw in 1 moves
Game #: 8901
player loses in 1 moves
Game #: 8902
player busts and loses in 2 moves
Game #: 8903
player loses in 1 moves
Game #: 8904
draw in 1 moves
Game #: 8905
player busts and loses in 1 moves
Game #: 8906
player busts and loses in 1 moves
Game #: 8907
player loses in 2 moves
Game #: 8908
player wins in 1 moves
Game #: 8909
dealer busts and player wins in 1 moves
Game #: 8910
player wins in 1 moves
Game #: 8911
player busts and loses in 1 moves
Game #: 8912
player busts and loses in 1 moves
Game #: 8913
player wins in 1 moves
Game #: 8914
player wins in 0 moves
Game #: 8915
dealer busts and player wins in 1 moves
Game #: 8916
player busts and loses in 1 moves
Game #: 8917
player busts and loses in 1 moves
Game #: 8918
player busts and loses in 1 moves
Game #: 8919
dealer busts and player wins in 1 moves
Game #: 8920
player wins in 0 moves
Game #: 8921
player loses in 1 moves
Game #: 8922
player loses in 1 moves
Game #: 8923
player loses in 1 moves
Game #: 8924
player loses in 1 moves
Game #: 8925
player wins in 0 moves
Game #: 8926
player busts and loses in 1 moves
Game #: 8927
player wins in 0 moves
Game #: 8928
player loses in 1 moves
Game #: 8929
draw in 1 moves
Game #: 8930
player wins in 2 moves
Game #: 8931
player busts and loses in 1 moves
Game #: 8932
dealer busts and player wins in 1 moves
Game #: 8933
dealer busts and player wins in 2 moves
Game #: 8934
player loses in 1 moves
Game #: 8935
player loses in 2 moves
Game #: 8936
player busts and loses in 1 moves
Game #: 8937
player wins in 1 moves
Game #: 8938
player wins in 0 moves
Game #: 8939
dealer busts and player wins in 1 moves
Game #: 8940
player loses in 1 moves
Game #: 8941
player busts and loses in 1 moves
Game #: 8942
dealer busts and player wins in 1 moves
Game #: 8943
draw in 1 moves
Game #: 8944
draw in 1 moves
Game #: 8945
player loses in 1 moves
Game #: 8946
player loses in 1 moves
Game #: 8947
player busts and loses in 1 moves
Game #: 8948
player loses in 1 moves
Game #: 8949
dealer busts and player wins in 1 moves
Game #: 8950
dealer busts and player wins in 1 moves
Game #: 8951
draw in 1 moves
Game #: 8952
player loses in 1 moves
Game #: 8953
dealer busts and player wins in 1 moves
Game #: 8954
dealer busts and player wins in 1 moves
Game #: 8955
player loses in 1 moves
Game #: 8956
player loses in 1 moves
Game #: 8957
player busts and loses in 1 moves
Game #: 8958
player wins in 1 moves
Game #: 8959
player loses in 1 moves
Game #: 8960
player loses in 1 moves
Game #: 8961
dealer busts and player wins in 1 moves
Game #: 8962
player wins in 2 moves
Game #: 8963
dealer busts and player wins in 1 moves
Game #: 8964
player loses in 1 moves
Game #: 8965
player loses in 1 moves
Game #: 8966
dealer busts and player wins in 1 moves
Game #: 8967
player wins in 1 moves
Game #: 8968
player loses in 1 moves
Game #: 8969
player wins in 1 moves
Game #: 8970
dealer busts and player wins in 1 moves
Game #: 8971
player loses in 1 moves
Game #: 8972
player wins in 2 moves
Game #: 8973
player loses in 1 moves
Game #: 8974
player wins in 0 moves
Game #: 8975
dealer busts and player wins in 1 moves
Game #: 8976
dealer busts and player wins in 1 moves
Game #: 8977
player loses in 1 moves
Game #: 8978
player loses in 1 moves
Game #: 8979
dealer busts and player wins in 1 moves
Game #: 8980
dealer busts and player wins in 1 moves
Game #: 8981
player busts and loses in 1 moves
Game #: 8982
player loses in 1 moves
Game #: 8983
dealer busts and player wins in 1 moves
Game #: 8984
player busts and loses in 1 moves
Game #: 8985
player loses in 1 moves
Game #: 8986
player loses in 1 moves
Game #: 8987
draw in 1 moves
Game #: 8988
player loses in 1 moves
Game #: 8989
dealer busts and player wins in 1 moves
Game #: 8990
player wins in 1 moves
Game #: 8991
player loses in 1 moves
Game #: 8992
dealer busts and player wins in 1 moves
Game #: 8993
player wins in 0 moves
Game #: 8994
player loses in 1 moves
Game #: 8995
dealer busts and player wins in 1 moves
Game #: 8996
dealer busts and player wins in 1 moves
Game #: 8997
player loses in 1 moves
Game #: 8998
dealer busts and player wins in 1 moves
Game #: 8999
player loses in 1 moves
Game #: 9000
player busts and loses in 3 moves
Game #: 9001
player busts and loses in 1 moves
Game #: 9002
player busts and loses in 1 moves
Game #: 9003
player loses in 1 moves
Game #: 9004
dealer busts and player wins in 3 moves
Game #: 9005
player wins in 1 moves
Game #: 9006
player wins in 1 moves
Game #: 9007
player wins in 0 moves
Game #: 9008
player loses in 2 moves
Game #: 9009
dealer busts and player wins in 1 moves
Game #: 9010
player loses in 1 moves
Game #: 9011
player loses in 1 moves
Game #: 9012
player busts and loses in 1 moves
Game #: 9013
player busts and loses in 1 moves
Game #: 9014
draw in 1 moves
Game #: 9015
player loses in 1 moves
Game #: 9016
player busts and loses in 1 moves
Game #: 9017
player wins in 1 moves
Game #: 9018
player busts and loses in 1 moves
Game #: 9019
player busts and loses in 1 moves
Game #: 9020
player wins in 1 moves
Game #: 9021
player loses in 2 moves
Game #: 9022
player busts and loses in 2 moves
Game #: 9023
player wins in 3 moves
Game #: 9024
player loses in 1 moves
Game #: 9025
dealer busts and player wins in 1 moves
Game #: 9026
dealer busts and player wins in 1 moves
Game #: 9027
player loses in 1 moves
Game #: 9028
dealer busts and player wins in 1 moves
Game #: 9029
player busts and loses in 2 moves
Game #: 9030
player loses in 1 moves
Game #: 9031
player wins in 1 moves
Game #: 9032
player wins in 1 moves
Game #: 9033
player wins in 1 moves
Game #: 9034
player busts and loses in 1 moves
Game #: 9035
player wins in 1 moves
Game #: 9036
player busts and loses in 1 moves
Game #: 9037
player loses in 1 moves
Game #: 9038
player loses in 1 moves
Game #: 9039
player loses in 1 moves
Game #: 9040
player wins in 0 moves
Game #: 9041
player busts and loses in 1 moves
Game #: 9042
player loses in 1 moves
Game #: 9043
player loses in 1 moves
Game #: 9044
player loses in 1 moves
Game #: 9045
dealer busts and player wins in 1 moves
Game #: 9046
draw in 1 moves
Game #: 9047
draw in 1 moves
Game #: 9048
player loses in 1 moves
Game #: 9049
player loses in 1 moves
Game #: 9050
player loses in 2 moves
Game #: 9051
player wins in 1 moves
Game #: 9052
player busts and loses in 1 moves
Game #: 9053
player busts and loses in 1 moves
Game #: 9054
draw in 1 moves
Game #: 9055
draw in 2 moves
Game #: 9056
player busts and loses in 1 moves
Game #: 9057
player loses in 1 moves
Game #: 9058
player busts and loses in 1 moves
Game #: 9059
player wins in 0 moves
Game #: 9060
player wins in 0 moves
Game #: 9061
player loses in 1 moves
Game #: 9062
player loses in 1 moves
Game #: 9063
player loses in 1 moves
Game #: 9064
player loses in 1 moves
Game #: 9065
dealer busts and player wins in 1 moves
Game #: 9066
player loses in 1 moves
Game #: 9067
player loses in 1 moves
Game #: 9068
dealer busts and player wins in 1 moves
Game #: 9069
player loses in 1 moves
Game #: 9070
dealer busts and player wins in 1 moves
Game #: 9071
player loses in 3 moves
Game #: 9072
dealer busts and player wins in 1 moves
Game #: 9073
draw in 1 moves
Game #: 9074
draw in 1 moves
Game #: 9075
player loses in 2 moves
Game #: 9076
player loses in 1 moves
Game #: 9077
dealer busts and player wins in 1 moves
Game #: 9078
draw in 1 moves
Game #: 9079
player wins in 0 moves
Game #: 9080
player busts and loses in 2 moves
Game #: 9081
draw in 1 moves
Game #: 9082
player loses in 2 moves
Game #: 9083
player loses in 2 moves
Game #: 9084
dealer busts and player wins in 1 moves
Game #: 9085
draw in 2 moves
Game #: 9086
dealer busts and player wins in 1 moves
Game #: 9087
player loses in 1 moves
Game #: 9088
dealer busts and player wins in 1 moves
Game #: 9089
dealer busts and player wins in 1 moves
Game #: 9090
player wins in 1 moves
Game #: 9091
dealer busts and player wins in 1 moves
Game #: 9092
player wins in 1 moves
Game #: 9093
draw in 1 moves
Game #: 9094
player wins in 1 moves
Game #: 9095
draw in 1 moves
Game #: 9096
dealer busts and player wins in 1 moves
Game #: 9097
player wins in 1 moves
Game #: 9098
player wins in 1 moves
Game #: 9099
dealer busts and player wins in 1 moves
Game #: 9100
player loses in 1 moves
Game #: 9101
player loses in 1 moves
Game #: 9102
player busts and loses in 1 moves
Game #: 9103
dealer busts and player wins in 2 moves
Game #: 9104
player loses in 1 moves
Game #: 9105
draw in 1 moves
Game #: 9106
player loses in 1 moves
Game #: 9107
player loses in 1 moves
Game #: 9108
dealer busts and player wins in 2 moves
Game #: 9109
player wins in 1 moves
Game #: 9110
player loses in 1 moves
Game #: 9111
player loses in 2 moves
Game #: 9112
dealer busts and player wins in 1 moves
Game #: 9113
player busts and loses in 1 moves
Game #: 9114
player loses in 1 moves
Game #: 9115
player loses in 1 moves
Game #: 9116
player loses in 2 moves
Game #: 9117
dealer busts and player wins in 1 moves
Game #: 9118
dealer busts and player wins in 1 moves
Game #: 9119
player loses in 1 moves
Game #: 9120
player wins in 1 moves
Game #: 9121
dealer busts and player wins in 1 moves
Game #: 9122
player loses in 1 moves
Game #: 9123
player wins in 1 moves
Game #: 9124
player busts and loses in 1 moves
Game #: 9125
dealer busts and player wins in 1 moves
Game #: 9126
player loses in 1 moves
Game #: 9127
player wins in 1 moves
Game #: 9128
player loses in 2 moves
Game #: 9129
dealer busts and player wins in 1 moves
Game #: 9130
dealer busts and player wins in 2 moves
Game #: 9131
player loses in 1 moves
Game #: 9132
dealer busts and player wins in 1 moves
Game #: 9133
player busts and loses in 1 moves
Game #: 9134
player busts and loses in 1 moves
Game #: 9135
dealer busts and player wins in 2 moves
Game #: 9136
player loses in 1 moves
Game #: 9137
draw in 2 moves
Game #: 9138
draw in 2 moves
Game #: 9139
player busts and loses in 1 moves
Game #: 9140
player wins in 1 moves
Game #: 9141
player loses in 1 moves
Game #: 9142
dealer busts and player wins in 1 moves
Game #: 9143
player loses in 1 moves
Game #: 9144
player busts and loses in 2 moves
Game #: 9145
player loses in 1 moves
Game #: 9146
player busts and loses in 3 moves
Game #: 9147
draw in 1 moves
Game #: 9148
player busts and loses in 1 moves
Game #: 9149
player loses in 1 moves
Game #: 9150
player busts and loses in 1 moves
Game #: 9151
dealer busts and player wins in 1 moves
Game #: 9152
player loses in 1 moves
Game #: 9153
player loses in 1 moves
Game #: 9154
player loses in 2 moves
Game #: 9155
player loses in 1 moves
Game #: 9156
player wins in 2 moves
Game #: 9157
player loses in 1 moves
Game #: 9158
dealer busts and player wins in 1 moves
Game #: 9159
dealer busts and player wins in 2 moves
Game #: 9160
dealer busts and player wins in 1 moves
Game #: 9161
dealer busts and player wins in 1 moves
Game #: 9162
player loses in 1 moves
Game #: 9163
player wins in 1 moves
Game #: 9164
player wins in 1 moves
Game #: 9165
dealer busts and player wins in 1 moves
Game #: 9166
player busts and loses in 1 moves
Game #: 9167
dealer busts and player wins in 1 moves
Game #: 9168
player loses in 1 moves
Game #: 9169
player loses in 1 moves
Game #: 9170
dealer busts and player wins in 1 moves
Game #: 9171
player wins in 1 moves
Game #: 9172
player loses in 1 moves
Game #: 9173
player loses in 1 moves
Game #: 9174
player loses in 2 moves
Game #: 9175
dealer busts and player wins in 2 moves
Game #: 9176
player wins in 1 moves
Game #: 9177
dealer busts and player wins in 1 moves
Game #: 9178
draw in 1 moves
Game #: 9179
player loses in 1 moves
Game #: 9180
player busts and loses in 1 moves
Game #: 9181
player loses in 1 moves
Game #: 9182
player wins in 1 moves
Game #: 9183
draw in 1 moves
Game #: 9184
player loses in 1 moves
Game #: 9185
dealer busts and player wins in 1 moves
Game #: 9186
player loses in 1 moves
Game #: 9187
player busts and loses in 1 moves
Game #: 9188
player wins in 2 moves
Game #: 9189
player busts and loses in 1 moves
Game #: 9190
player wins in 1 moves
Game #: 9191
player busts and loses in 1 moves
Game #: 9192
player wins in 2 moves
Game #: 9193
dealer busts and player wins in 1 moves
Game #: 9194
player busts and loses in 1 moves
Game #: 9195
player wins in 1 moves
Game #: 9196
player wins in 1 moves
Game #: 9197
dealer busts and player wins in 1 moves
Game #: 9198
player loses in 1 moves
Game #: 9199
dealer busts and player wins in 1 moves
Game #: 9200
player wins in 1 moves
Game #: 9201
player loses in 1 moves
Game #: 9202
player busts and loses in 1 moves
Game #: 9203
player loses in 1 moves
Game #: 9204
player loses in 1 moves
Game #: 9205
player loses in 2 moves
Game #: 9206
dealer busts and player wins in 1 moves
Game #: 9207
player loses in 1 moves
Game #: 9208
player wins in 1 moves
Game #: 9209
player busts and loses in 1 moves
Game #: 9210
player loses in 1 moves
Game #: 9211
player wins in 1 moves
Game #: 9212
player loses in 1 moves
Game #: 9213
player loses in 1 moves
Game #: 9214
player wins in 0 moves
Game #: 9215
player busts and loses in 1 moves
Game #: 9216
player wins in 2 moves
Game #: 9217
player wins in 0 moves
Game #: 9218
player busts and loses in 1 moves
Game #: 9219
player loses in 1 moves
Game #: 9220
player loses in 2 moves
Game #: 9221
player wins in 0 moves
Game #: 9222
player wins in 2 moves
Game #: 9223
player loses in 1 moves
Game #: 9224
dealer busts and player wins in 3 moves
Game #: 9225
player loses in 1 moves
Game #: 9226
player loses in 1 moves
Game #: 9227
player loses in 1 moves
Game #: 9228
dealer busts and player wins in 2 moves
Game #: 9229
player loses in 1 moves
Game #: 9230
player wins in 0 moves
Game #: 9231
player loses in 1 moves
Game #: 9232
player busts and loses in 1 moves
Game #: 9233
draw in 1 moves
Game #: 9234
player busts and loses in 1 moves
Game #: 9235
player wins in 0 moves
Game #: 9236
player wins in 1 moves
Game #: 9237
player busts and loses in 1 moves
Game #: 9238
player loses in 1 moves
Game #: 9239
player wins in 1 moves
Game #: 9240
player loses in 1 moves
Game #: 9241
player busts and loses in 1 moves
Game #: 9242
player wins in 1 moves
Game #: 9243
player loses in 1 moves
Game #: 9244
draw in 1 moves
Game #: 9245
player loses in 1 moves
Game #: 9246
player loses in 1 moves
Game #: 9247
player loses in 1 moves
Game #: 9248
player loses in 2 moves
Game #: 9249
player loses in 1 moves
Game #: 9250
player wins in 0 moves
Game #: 9251
player wins in 2 moves
Game #: 9252
dealer busts and player wins in 2 moves
Game #: 9253
dealer busts and player wins in 1 moves
Game #: 9254
player loses in 3 moves
Game #: 9255
player wins in 0 moves
Game #: 9256
player loses in 1 moves
Game #: 9257
player loses in 1 moves
Game #: 9258
player loses in 1 moves
Game #: 9259
player loses in 1 moves
Game #: 9260
player busts and loses in 1 moves
Game #: 9261
player busts and loses in 1 moves
Game #: 9262
dealer busts and player wins in 1 moves
Game #: 9263
player busts and loses in 1 moves
Game #: 9264
player loses in 1 moves
Game #: 9265
player busts and loses in 1 moves
Game #: 9266
dealer busts and player wins in 1 moves
Game #: 9267
player loses in 1 moves
Game #: 9268
player loses in 1 moves
Game #: 9269
player loses in 1 moves
Game #: 9270
player loses in 1 moves
Game #: 9271
player loses in 1 moves
Game #: 9272
player loses in 1 moves
Game #: 9273
player loses in 1 moves
Game #: 9274
player loses in 1 moves
Game #: 9275
dealer busts and player wins in 1 moves
Game #: 9276
player loses in 1 moves
Game #: 9277
player loses in 1 moves
Game #: 9278
draw in 1 moves
Game #: 9279
player wins in 0 moves
Game #: 9280
dealer busts and player wins in 1 moves
Game #: 9281
player loses in 1 moves
Game #: 9282
player loses in 1 moves
Game #: 9283
player wins in 1 moves
Game #: 9284
draw in 1 moves
Game #: 9285
player loses in 1 moves
Game #: 9286
player loses in 1 moves
Game #: 9287
dealer busts and player wins in 1 moves
Game #: 9288
player wins in 1 moves
Game #: 9289
player loses in 1 moves
Game #: 9290
player wins in 2 moves
Game #: 9291
player wins in 0 moves
Game #: 9292
player wins in 0 moves
Game #: 9293
player loses in 1 moves
Game #: 9294
player wins in 1 moves
Game #: 9295
player wins in 1 moves
Game #: 9296
player wins in 1 moves
Game #: 9297
player wins in 1 moves
Game #: 9298
player loses in 1 moves
Game #: 9299
player loses in 1 moves
Game #: 9300
dealer busts and player wins in 1 moves
Game #: 9301
player busts and loses in 1 moves
Game #: 9302
draw in 3 moves
Game #: 9303
dealer busts and player wins in 1 moves
Game #: 9304
draw in 1 moves
Game #: 9305
player busts and loses in 1 moves
Game #: 9306
player loses in 1 moves
Game #: 9307
player busts and loses in 1 moves
Game #: 9308
player busts and loses in 1 moves
Game #: 9309
player wins in 1 moves
Game #: 9310
player wins in 0 moves
Game #: 9311
player busts and loses in 1 moves
Game #: 9312
player loses in 1 moves
Game #: 9313
player busts and loses in 1 moves
Game #: 9314
player wins in 1 moves
Game #: 9315
player loses in 1 moves
Game #: 9316
player loses in 1 moves
Game #: 9317
player busts and loses in 1 moves
Game #: 9318
dealer busts and player wins in 2 moves
Game #: 9319
player wins in 1 moves
Game #: 9320
player wins in 1 moves
Game #: 9321
player loses in 1 moves
Game #: 9322
player loses in 1 moves
Game #: 9323
draw in 1 moves
Game #: 9324
dealer busts and player wins in 2 moves
Game #: 9325
player loses in 1 moves
Game #: 9326
dealer busts and player wins in 1 moves
Game #: 9327
draw in 1 moves
Game #: 9328
dealer busts and player wins in 2 moves
Game #: 9329
player wins in 1 moves
Game #: 9330
player wins in 0 moves
Game #: 9331
player wins in 0 moves
Game #: 9332
draw in 1 moves
Game #: 9333
draw in 1 moves
Game #: 9334
player loses in 1 moves
Game #: 9335
player loses in 1 moves
Game #: 9336
player wins in 1 moves
Game #: 9337
player loses in 1 moves
Game #: 9338
dealer busts and player wins in 1 moves
Game #: 9339
dealer busts and player wins in 1 moves
Game #: 9340
draw in 1 moves
Game #: 9341
player loses in 1 moves
Game #: 9342
player busts and loses in 1 moves
Game #: 9343
dealer busts and player wins in 1 moves
Game #: 9344
player loses in 1 moves
Game #: 9345
player loses in 1 moves
Game #: 9346
draw in 1 moves
Game #: 9347
player loses in 2 moves
Game #: 9348
player loses in 1 moves
Game #: 9349
player loses in 1 moves
Game #: 9350
draw in 1 moves
Game #: 9351
player wins in 1 moves
Game #: 9352
player loses in 1 moves
Game #: 9353
player busts and loses in 1 moves
Game #: 9354
player loses in 1 moves
Game #: 9355
player busts and loses in 1 moves
Game #: 9356
dealer busts and player wins in 1 moves
Game #: 9357
player loses in 1 moves
Game #: 9358
player loses in 1 moves
Game #: 9359
player loses in 1 moves
Game #: 9360
player wins in 1 moves
Game #: 9361
player loses in 1 moves
Game #: 9362
dealer busts and player wins in 1 moves
Game #: 9363
player wins in 0 moves
Game #: 9364
player loses in 1 moves
Game #: 9365
player loses in 1 moves
Game #: 9366
player loses in 1 moves
Game #: 9367
dealer busts and player wins in 1 moves
Game #: 9368
dealer busts and player wins in 1 moves
Game #: 9369
dealer busts and player wins in 2 moves
Game #: 9370
dealer busts and player wins in 1 moves
Game #: 9371
player loses in 1 moves
Game #: 9372
player loses in 1 moves
Game #: 9373
draw in 2 moves
Game #: 9374
draw in 1 moves
Game #: 9375
dealer busts and player wins in 1 moves
Game #: 9376
player busts and loses in 1 moves
Game #: 9377
dealer busts and player wins in 2 moves
Game #: 9378
player busts and loses in 2 moves
Game #: 9379
player busts and loses in 1 moves
Game #: 9380
player loses in 1 moves
Game #: 9381
player busts and loses in 1 moves
Game #: 9382
dealer busts and player wins in 1 moves
Game #: 9383
player loses in 1 moves
Game #: 9384
player wins in 1 moves
Game #: 9385
dealer busts and player wins in 1 moves
Game #: 9386
player loses in 1 moves
Game #: 9387
dealer busts and player wins in 1 moves
Game #: 9388
dealer busts and player wins in 3 moves
Game #: 9389
player loses in 1 moves
Game #: 9390
player loses in 1 moves
Game #: 9391
player busts and loses in 1 moves
Game #: 9392
player busts and loses in 1 moves
Game #: 9393
dealer busts and player wins in 1 moves
Game #: 9394
player wins in 1 moves
Game #: 9395
player loses in 1 moves
Game #: 9396
dealer busts and player wins in 2 moves
Game #: 9397
player busts and loses in 1 moves
Game #: 9398
dealer busts and player wins in 1 moves
Game #: 9399
player loses in 1 moves
Game #: 9400
dealer busts and player wins in 2 moves
Game #: 9401
dealer busts and player wins in 1 moves
Game #: 9402
dealer busts and player wins in 1 moves
Game #: 9403
player wins in 1 moves
Game #: 9404
dealer busts and player wins in 1 moves
Game #: 9405
draw in 1 moves
Game #: 9406
player wins in 0 moves
Game #: 9407
player loses in 1 moves
Game #: 9408
draw in 2 moves
Game #: 9409
player loses in 1 moves
Game #: 9410
player busts and loses in 1 moves
Game #: 9411
player loses in 1 moves
Game #: 9412
player loses in 1 moves
Game #: 9413
player loses in 1 moves
Game #: 9414
player wins in 3 moves
Game #: 9415
player wins in 0 moves
Game #: 9416
dealer busts and player wins in 1 moves
Game #: 9417
player loses in 2 moves
Game #: 9418
player wins in 1 moves
Game #: 9419
dealer busts and player wins in 1 moves
Game #: 9420
player wins in 2 moves
Game #: 9421
player loses in 2 moves
Game #: 9422
player loses in 1 moves
Game #: 9423
player loses in 1 moves
Game #: 9424
dealer busts and player wins in 1 moves
Game #: 9425
dealer busts and player wins in 1 moves
Game #: 9426
dealer busts and player wins in 1 moves
Game #: 9427
player loses in 1 moves
Game #: 9428
player loses in 1 moves
Game #: 9429
player loses in 1 moves
Game #: 9430
dealer busts and player wins in 1 moves
Game #: 9431
player loses in 1 moves
Game #: 9432
player loses in 1 moves
Game #: 9433
dealer busts and player wins in 1 moves
Game #: 9434
dealer busts and player wins in 1 moves
Game #: 9435
player loses in 1 moves
Game #: 9436
player busts and loses in 1 moves
Game #: 9437
dealer busts and player wins in 1 moves
Game #: 9438
player loses in 1 moves
Game #: 9439
dealer busts and player wins in 1 moves
Game #: 9440
dealer busts and player wins in 1 moves
Game #: 9441
player busts and loses in 1 moves
Game #: 9442
player loses in 1 moves
Game #: 9443
draw in 1 moves
Game #: 9444
dealer busts and player wins in 1 moves
Game #: 9445
player loses in 1 moves
Game #: 9446
player loses in 1 moves
Game #: 9447
player busts and loses in 1 moves
Game #: 9448
player loses in 1 moves
Game #: 9449
player busts and loses in 1 moves
Game #: 9450
player busts and loses in 1 moves
Game #: 9451
player loses in 2 moves
Game #: 9452
dealer busts and player wins in 1 moves
Game #: 9453
player loses in 2 moves
Game #: 9454
dealer busts and player wins in 1 moves
Game #: 9455
dealer busts and player wins in 1 moves
Game #: 9456
player wins in 0 moves
Game #: 9457
player loses in 1 moves
Game #: 9458
player loses in 1 moves
Game #: 9459
player wins in 0 moves
Game #: 9460
dealer busts and player wins in 1 moves
Game #: 9461
draw in 1 moves
Game #: 9462
dealer busts and player wins in 1 moves
Game #: 9463
player busts and loses in 2 moves
Game #: 9464
player loses in 1 moves
Game #: 9465
player wins in 0 moves
Game #: 9466
dealer busts and player wins in 1 moves
Game #: 9467
player wins in 0 moves
Game #: 9468
dealer busts and player wins in 1 moves
Game #: 9469
dealer busts and player wins in 1 moves
Game #: 9470
player loses in 1 moves
Game #: 9471
player busts and loses in 1 moves
Game #: 9472
player wins in 1 moves
Game #: 9473
dealer busts and player wins in 2 moves
Game #: 9474
dealer busts and player wins in 1 moves
Game #: 9475
player loses in 1 moves
Game #: 9476
player wins in 2 moves
Game #: 9477
dealer busts and player wins in 1 moves
Game #: 9478
dealer busts and player wins in 1 moves
Game #: 9479
player busts and loses in 1 moves
Game #: 9480
dealer busts and player wins in 2 moves
Game #: 9481
player loses in 1 moves
Game #: 9482
dealer busts and player wins in 1 moves
Game #: 9483
player loses in 1 moves
Game #: 9484
draw in 2 moves
Game #: 9485
player loses in 1 moves
Game #: 9486
player busts and loses in 1 moves
Game #: 9487
player wins in 0 moves
Game #: 9488
player loses in 1 moves
Game #: 9489
player loses in 1 moves
Game #: 9490
player wins in 1 moves
Game #: 9491
player wins in 0 moves
Game #: 9492
dealer busts and player wins in 1 moves
Game #: 9493
player busts and loses in 1 moves
Game #: 9494
player busts and loses in 1 moves
Game #: 9495
player loses in 1 moves
Game #: 9496
player wins in 2 moves
Game #: 9497
draw in 2 moves
Game #: 9498
player loses in 1 moves
Game #: 9499
player loses in 1 moves
Game #: 9500
player wins in 1 moves
Game #: 9501
player loses in 2 moves
Game #: 9502
draw in 1 moves
Game #: 9503
player loses in 1 moves
Game #: 9504
dealer busts and player wins in 1 moves
Game #: 9505
player loses in 1 moves
Game #: 9506
player busts and loses in 1 moves
Game #: 9507
player wins in 1 moves
Game #: 9508
dealer busts and player wins in 1 moves
Game #: 9509
player loses in 1 moves
Game #: 9510
player busts and loses in 1 moves
Game #: 9511
dealer busts and player wins in 1 moves
Game #: 9512
player loses in 1 moves
Game #: 9513
dealer busts and player wins in 1 moves
Game #: 9514
player loses in 1 moves
Game #: 9515
player wins in 1 moves
Game #: 9516
dealer busts and player wins in 1 moves
Game #: 9517
player loses in 1 moves
Game #: 9518
player busts and loses in 1 moves
Game #: 9519
player loses in 2 moves
Game #: 9520
player busts and loses in 1 moves
Game #: 9521
dealer busts and player wins in 1 moves
Game #: 9522
player loses in 1 moves
Game #: 9523
dealer busts and player wins in 1 moves
Game #: 9524
player busts and loses in 1 moves
Game #: 9525
player busts and loses in 1 moves
Game #: 9526
dealer busts and player wins in 1 moves
Game #: 9527
player loses in 1 moves
Game #: 9528
player loses in 1 moves
Game #: 9529
player wins in 1 moves
Game #: 9530
player loses in 1 moves
Game #: 9531
player loses in 1 moves
Game #: 9532
player loses in 1 moves
Game #: 9533
dealer busts and player wins in 1 moves
Game #: 9534
dealer busts and player wins in 1 moves
Game #: 9535
player loses in 1 moves
Game #: 9536
player wins in 0 moves
Game #: 9537
player loses in 1 moves
Game #: 9538
dealer busts and player wins in 1 moves
Game #: 9539
dealer busts and player wins in 1 moves
Game #: 9540
player loses in 1 moves
Game #: 9541
player wins in 2 moves
Game #: 9542
player wins in 2 moves
Game #: 9543
dealer busts and player wins in 1 moves
Game #: 9544
player wins in 0 moves
Game #: 9545
player loses in 1 moves
Game #: 9546
player busts and loses in 1 moves
Game #: 9547
draw in 1 moves
Game #: 9548
player loses in 1 moves
Game #: 9549
player wins in 2 moves
Game #: 9550
dealer busts and player wins in 1 moves
Game #: 9551
player wins in 0 moves
Game #: 9552
player loses in 1 moves
Game #: 9553
dealer busts and player wins in 1 moves
Game #: 9554
draw in 1 moves
Game #: 9555
player loses in 1 moves
Game #: 9556
dealer busts and player wins in 2 moves
Game #: 9557
player wins in 1 moves
Game #: 9558
player busts and loses in 1 moves
Game #: 9559
player wins in 1 moves
Game #: 9560
player wins in 2 moves
Game #: 9561
player loses in 1 moves
Game #: 9562
player loses in 1 moves
Game #: 9563
player wins in 2 moves
Game #: 9564
player busts and loses in 1 moves
Game #: 9565
player loses in 1 moves
Game #: 9566
player wins in 0 moves
Game #: 9567
player loses in 1 moves
Game #: 9568
player loses in 1 moves
Game #: 9569
player loses in 1 moves
Game #: 9570
dealer busts and player wins in 1 moves
Game #: 9571
player loses in 1 moves
Game #: 9572
player loses in 1 moves
Game #: 9573
player loses in 1 moves
Game #: 9574
player loses in 1 moves
Game #: 9575
dealer busts and player wins in 1 moves
Game #: 9576
player busts and loses in 1 moves
Game #: 9577
player wins in 0 moves
Game #: 9578
player busts and loses in 1 moves
Game #: 9579
player loses in 1 moves
Game #: 9580
player loses in 1 moves
Game #: 9581
player wins in 0 moves
Game #: 9582
draw in 1 moves
Game #: 9583
draw in 2 moves
Game #: 9584
player busts and loses in 2 moves
Game #: 9585
player loses in 2 moves
Game #: 9586
player wins in 3 moves
Game #: 9587
dealer busts and player wins in 1 moves
Game #: 9588
dealer busts and player wins in 1 moves
Game #: 9589
draw in 1 moves
Game #: 9590
draw in 1 moves
Game #: 9591
dealer busts and player wins in 1 moves
Game #: 9592
player busts and loses in 1 moves
Game #: 9593
player wins in 1 moves
Game #: 9594
player loses in 1 moves
Game #: 9595
player wins in 1 moves
Game #: 9596
player busts and loses in 2 moves
Game #: 9597
dealer busts and player wins in 1 moves
Game #: 9598
player loses in 1 moves
Game #: 9599
player loses in 1 moves
Game #: 9600
player loses in 1 moves
Game #: 9601
dealer busts and player wins in 1 moves
Game #: 9602
dealer busts and player wins in 1 moves
Game #: 9603
dealer busts and player wins in 1 moves
Game #: 9604
dealer busts and player wins in 1 moves
Game #: 9605
player loses in 1 moves
Game #: 9606
draw in 1 moves
Game #: 9607
dealer busts and player wins in 1 moves
Game #: 9608
player loses in 1 moves
Game #: 9609
player loses in 1 moves
Game #: 9610
player wins in 1 moves
Game #: 9611
player busts and loses in 1 moves
Game #: 9612
dealer busts and player wins in 1 moves
Game #: 9613
player busts and loses in 1 moves
Game #: 9614
draw in 1 moves
Game #: 9615
dealer busts and player wins in 2 moves
Game #: 9616
draw in 1 moves
Game #: 9617
dealer busts and player wins in 2 moves
Game #: 9618
dealer busts and player wins in 1 moves
Game #: 9619
draw in 2 moves
Game #: 9620
player wins in 1 moves
Game #: 9621
player loses in 1 moves
Game #: 9622
draw in 1 moves
Game #: 9623
player busts and loses in 1 moves
Game #: 9624
dealer busts and player wins in 1 moves
Game #: 9625
player loses in 5 moves
Game #: 9626
player wins in 1 moves
Game #: 9627
dealer busts and player wins in 2 moves
Game #: 9628
player wins in 1 moves
Game #: 9629
dealer busts and player wins in 2 moves
Game #: 9630
player loses in 1 moves
Game #: 9631
player loses in 1 moves
Game #: 9632
player wins in 1 moves
Game #: 9633
dealer busts and player wins in 3 moves
Game #: 9634
player loses in 1 moves
Game #: 9635
player loses in 1 moves
Game #: 9636
player wins in 1 moves
Game #: 9637
player wins in 1 moves
Game #: 9638
player loses in 1 moves
Game #: 9639
player wins in 0 moves
Game #: 9640
player loses in 2 moves
Game #: 9641
player loses in 3 moves
Game #: 9642
player loses in 1 moves
Game #: 9643
player loses in 1 moves
Game #: 9644
player wins in 1 moves
Game #: 9645
dealer busts and player wins in 1 moves
Game #: 9646
player wins in 1 moves
Game #: 9647
dealer busts and player wins in 1 moves
Game #: 9648
player loses in 1 moves
Game #: 9649
player loses in 1 moves
Game #: 9650
draw in 1 moves
Game #: 9651
player wins in 1 moves
Game #: 9652
player loses in 2 moves
Game #: 9653
player loses in 2 moves
Game #: 9654
player loses in 1 moves
Game #: 9655
player busts and loses in 1 moves
Game #: 9656
player loses in 1 moves
Game #: 9657
player busts and loses in 1 moves
Game #: 9658
player wins in 1 moves
Game #: 9659
player loses in 1 moves
Game #: 9660
player loses in 1 moves
Game #: 9661
player busts and loses in 1 moves
Game #: 9662
player wins in 1 moves
Game #: 9663
player busts and loses in 2 moves
Game #: 9664
player wins in 1 moves
Game #: 9665
dealer busts and player wins in 1 moves
Game #: 9666
player wins in 0 moves
Game #: 9667
dealer busts and player wins in 1 moves
Game #: 9668
player loses in 1 moves
Game #: 9669
player busts and loses in 1 moves
Game #: 9670
player wins in 1 moves
Game #: 9671
player loses in 1 moves
Game #: 9672
player busts and loses in 1 moves
Game #: 9673
dealer busts and player wins in 1 moves
Game #: 9674
player loses in 1 moves
Game #: 9675
dealer busts and player wins in 1 moves
Game #: 9676
player loses in 1 moves
Game #: 9677
player loses in 1 moves
Game #: 9678
player loses in 1 moves
Game #: 9679
player wins in 1 moves
Game #: 9680
player loses in 2 moves
Game #: 9681
draw in 1 moves
Game #: 9682
player loses in 1 moves
Game #: 9683
dealer busts and player wins in 1 moves
Game #: 9684
draw in 2 moves
Game #: 9685
dealer busts and player wins in 1 moves
Game #: 9686
player wins in 1 moves
Game #: 9687
player wins in 0 moves
Game #: 9688
draw in 1 moves
Game #: 9689
player wins in 1 moves
Game #: 9690
dealer busts and player wins in 2 moves
Game #: 9691
player wins in 1 moves
Game #: 9692
player wins in 1 moves
Game #: 9693
player loses in 1 moves
Game #: 9694
player busts and loses in 1 moves
Game #: 9695
dealer busts and player wins in 1 moves
Game #: 9696
dealer busts and player wins in 1 moves
Game #: 9697
draw in 2 moves
Game #: 9698
player wins in 0 moves
Game #: 9699
draw in 2 moves
Game #: 9700
player loses in 1 moves
Game #: 9701
draw in 1 moves
Game #: 9702
player wins in 0 moves
Game #: 9703
player loses in 1 moves
Game #: 9704
player busts and loses in 1 moves
Game #: 9705
player wins in 0 moves
Game #: 9706
player busts and loses in 1 moves
Game #: 9707
player wins in 1 moves
Game #: 9708
player wins in 0 moves
Game #: 9709
player loses in 1 moves
Game #: 9710
player loses in 1 moves
Game #: 9711
player loses in 1 moves
Game #: 9712
player loses in 1 moves
Game #: 9713
player busts and loses in 1 moves
Game #: 9714
dealer busts and player wins in 1 moves
Game #: 9715
draw in 1 moves
Game #: 9716
player loses in 2 moves
Game #: 9717
dealer busts and player wins in 1 moves
Game #: 9718
dealer busts and player wins in 1 moves
Game #: 9719
player busts and loses in 1 moves
Game #: 9720
dealer busts and player wins in 2 moves
Game #: 9721
player loses in 1 moves
Game #: 9722
player busts and loses in 1 moves
Game #: 9723
player loses in 1 moves
Game #: 9724
player wins in 1 moves
Game #: 9725
player wins in 1 moves
Game #: 9726
player busts and loses in 1 moves
Game #: 9727
player loses in 1 moves
Game #: 9728
dealer busts and player wins in 1 moves
Game #: 9729
player loses in 1 moves
Game #: 9730
draw in 1 moves
Game #: 9731
dealer busts and player wins in 1 moves
Game #: 9732
dealer busts and player wins in 2 moves
Game #: 9733
player busts and loses in 2 moves
Game #: 9734
player loses in 1 moves
Game #: 9735
dealer busts and player wins in 1 moves
Game #: 9736
player wins in 1 moves
Game #: 9737
draw in 1 moves
Game #: 9738
player loses in 1 moves
Game #: 9739
player loses in 1 moves
Game #: 9740
player wins in 1 moves
Game #: 9741
player busts and loses in 1 moves
Game #: 9742
player loses in 1 moves
Game #: 9743
dealer busts and player wins in 1 moves
Game #: 9744
player loses in 1 moves
Game #: 9745
player loses in 1 moves
Game #: 9746
dealer busts and player wins in 1 moves
Game #: 9747
player wins in 1 moves
Game #: 9748
player busts and loses in 1 moves
Game #: 9749
player wins in 0 moves
Game #: 9750
dealer busts and player wins in 1 moves
Game #: 9751
player wins in 1 moves
Game #: 9752
player busts and loses in 1 moves
Game #: 9753
player loses in 1 moves
Game #: 9754
player loses in 1 moves
Game #: 9755
player loses in 1 moves
Game #: 9756
player wins in 1 moves
Game #: 9757
player loses in 1 moves
Game #: 9758
dealer busts and player wins in 1 moves
Game #: 9759
draw in 1 moves
Game #: 9760
player wins in 0 moves
Game #: 9761
player loses in 2 moves
Game #: 9762
player busts and loses in 1 moves
Game #: 9763
player wins in 0 moves
Game #: 9764
player loses in 1 moves
Game #: 9765
dealer busts and player wins in 1 moves
Game #: 9766
player loses in 1 moves
Game #: 9767
player wins in 1 moves
Game #: 9768
player wins in 2 moves
Game #: 9769
draw in 1 moves
Game #: 9770
player wins in 0 moves
Game #: 9771
player loses in 1 moves
Game #: 9772
player loses in 1 moves
Game #: 9773
dealer busts and player wins in 1 moves
Game #: 9774
player loses in 1 moves
Game #: 9775
draw in 1 moves
Game #: 9776
player wins in 2 moves
Game #: 9777
player loses in 1 moves
Game #: 9778
dealer busts and player wins in 1 moves
Game #: 9779
player busts and loses in 1 moves
Game #: 9780
dealer busts and player wins in 2 moves
Game #: 9781
dealer busts and player wins in 1 moves
Game #: 9782
draw in 1 moves
Game #: 9783
player loses in 1 moves
Game #: 9784
player loses in 1 moves
Game #: 9785
dealer busts and player wins in 3 moves
Game #: 9786
dealer busts and player wins in 1 moves
Game #: 9787
dealer busts and player wins in 1 moves
Game #: 9788
player loses in 2 moves
Game #: 9789
player loses in 2 moves
Game #: 9790
dealer busts and player wins in 2 moves
Game #: 9791
dealer busts and player wins in 1 moves
Game #: 9792
dealer busts and player wins in 2 moves
Game #: 9793
player loses in 1 moves
Game #: 9794
player loses in 1 moves
Game #: 9795
player loses in 1 moves
Game #: 9796
player wins in 0 moves
Game #: 9797
player wins in 2 moves
Game #: 9798
player busts and loses in 1 moves
Game #: 9799
dealer busts and player wins in 2 moves
Game #: 9800
player wins in 1 moves
Game #: 9801
draw in 1 moves
Game #: 9802
player loses in 1 moves
Game #: 9803
player wins in 1 moves
Game #: 9804
player busts and loses in 2 moves
Game #: 9805
player loses in 1 moves
Game #: 9806
draw in 1 moves
Game #: 9807
player loses in 1 moves
Game #: 9808
dealer busts and player wins in 1 moves
Game #: 9809
dealer busts and player wins in 1 moves
Game #: 9810
player busts and loses in 1 moves
Game #: 9811
player wins in 1 moves
Game #: 9812
player wins in 1 moves
Game #: 9813
draw in 1 moves
Game #: 9814
player busts and loses in 2 moves
Game #: 9815
player wins in 0 moves
Game #: 9816
player busts and loses in 2 moves
Game #: 9817
dealer busts and player wins in 1 moves
Game #: 9818
player wins in 1 moves
Game #: 9819
player wins in 2 moves
Game #: 9820
draw in 1 moves
Game #: 9821
player busts and loses in 1 moves
Game #: 9822
player loses in 1 moves
Game #: 9823
player loses in 1 moves
Game #: 9824
player busts and loses in 1 moves
Game #: 9825
player loses in 1 moves
Game #: 9826
player wins in 1 moves
Game #: 9827
player wins in 1 moves
Game #: 9828
player busts and loses in 1 moves
Game #: 9829
player wins in 2 moves
Game #: 9830
player loses in 1 moves
Game #: 9831
dealer busts and player wins in 1 moves
Game #: 9832
player wins in 1 moves
Game #: 9833
player loses in 1 moves
Game #: 9834
player wins in 1 moves
Game #: 9835
dealer busts and player wins in 1 moves
Game #: 9836
player loses in 1 moves
Game #: 9837
player wins in 0 moves
Game #: 9838
player wins in 0 moves
Game #: 9839
player loses in 1 moves
Game #: 9840
dealer busts and player wins in 1 moves
Game #: 9841
player wins in 0 moves
Game #: 9842
player loses in 1 moves
Game #: 9843
player wins in 0 moves
Game #: 9844
dealer busts and player wins in 1 moves
Game #: 9845
player loses in 2 moves
Game #: 9846
player wins in 0 moves
Game #: 9847
player loses in 1 moves
Game #: 9848
player loses in 1 moves
Game #: 9849
player loses in 1 moves
Game #: 9850
dealer busts and player wins in 2 moves
Game #: 9851
dealer busts and player wins in 1 moves
Game #: 9852
player loses in 1 moves
Game #: 9853
player wins in 0 moves
Game #: 9854
player loses in 1 moves
Game #: 9855
player wins in 0 moves
Game #: 9856
player loses in 2 moves
Game #: 9857
dealer busts and player wins in 2 moves
Game #: 9858
player busts and loses in 1 moves
Game #: 9859
player wins in 1 moves
Game #: 9860
draw in 1 moves
Game #: 9861
dealer busts and player wins in 1 moves
Game #: 9862
dealer busts and player wins in 1 moves
Game #: 9863
draw in 1 moves
Game #: 9864
dealer busts and player wins in 1 moves
Game #: 9865
player wins in 1 moves
Game #: 9866
player loses in 1 moves
Game #: 9867
player loses in 1 moves
Game #: 9868
dealer busts and player wins in 1 moves
Game #: 9869
draw in 2 moves
Game #: 9870
player busts and loses in 1 moves
Game #: 9871
player wins in 1 moves
Game #: 9872
player busts and loses in 1 moves
Game #: 9873
draw in 1 moves
Game #: 9874
player loses in 1 moves
Game #: 9875
player wins in 3 moves
Game #: 9876
player busts and loses in 2 moves
Game #: 9877
player loses in 1 moves
Game #: 9878
player loses in 1 moves
Game #: 9879
draw in 1 moves
Game #: 9880
player busts and loses in 1 moves
Game #: 9881
player loses in 1 moves
Game #: 9882
draw in 1 moves
Game #: 9883
player busts and loses in 1 moves
Game #: 9884
player busts and loses in 1 moves
Game #: 9885
player busts and loses in 1 moves
Game #: 9886
player busts and loses in 1 moves
Game #: 9887
player busts and loses in 2 moves
Game #: 9888
draw in 2 moves
Game #: 9889
player loses in 2 moves
Game #: 9890
player loses in 1 moves
Game #: 9891
player loses in 1 moves
Game #: 9892
player wins in 2 moves
Game #: 9893
player loses in 1 moves
Game #: 9894
player loses in 1 moves
Game #: 9895
player busts and loses in 2 moves
Game #: 9896
player wins in 1 moves
Game #: 9897
player loses in 1 moves
Game #: 9898
player wins in 0 moves
Game #: 9899
dealer busts and player wins in 2 moves
Game #: 9900
player loses in 1 moves
Game #: 9901
dealer busts and player wins in 2 moves
Game #: 9902
dealer busts and player wins in 1 moves
Game #: 9903
dealer busts and player wins in 1 moves
Game #: 9904
player busts and loses in 1 moves
Game #: 9905
player loses in 1 moves
Game #: 9906
player wins in 1 moves
Game #: 9907
dealer busts and player wins in 1 moves
Game #: 9908
dealer busts and player wins in 1 moves
Game #: 9909
dealer busts and player wins in 1 moves
Game #: 9910
player busts and loses in 2 moves
Game #: 9911
player loses in 1 moves
Game #: 9912
dealer busts and player wins in 1 moves
Game #: 9913
player loses in 1 moves
Game #: 9914
player busts and loses in 1 moves
Game #: 9915
player loses in 1 moves
Game #: 9916
dealer busts and player wins in 1 moves
Game #: 9917
player busts and loses in 1 moves
Game #: 9918
player loses in 1 moves
Game #: 9919
dealer busts and player wins in 1 moves
Game #: 9920
player loses in 1 moves
Game #: 9921
player loses in 1 moves
Game #: 9922
player loses in 1 moves
Game #: 9923
player busts and loses in 2 moves
Game #: 9924
player busts and loses in 1 moves
Game #: 9925
player busts and loses in 1 moves
Game #: 9926
player busts and loses in 1 moves
Game #: 9927
player wins in 0 moves
Game #: 9928
player wins in 0 moves
Game #: 9929
player wins in 0 moves
Game #: 9930
player wins in 1 moves
Game #: 9931
player loses in 1 moves
Game #: 9932
player loses in 4 moves
Game #: 9933
player busts and loses in 1 moves
Game #: 9934
draw in 1 moves
Game #: 9935
player wins in 2 moves
Game #: 9936
draw in 1 moves
Game #: 9937
player loses in 1 moves
Game #: 9938
player loses in 3 moves
Game #: 9939
player loses in 1 moves
Game #: 9940
player wins in 1 moves
Game #: 9941
dealer busts and player wins in 1 moves
Game #: 9942
dealer busts and player wins in 1 moves
Game #: 9943
dealer busts and player wins in 1 moves
Game #: 9944
player busts and loses in 1 moves
Game #: 9945
player loses in 2 moves
Game #: 9946
player wins in 1 moves
Game #: 9947
player wins in 0 moves
Game #: 9948
dealer busts and player wins in 1 moves
Game #: 9949
player loses in 1 moves
Game #: 9950
player loses in 1 moves
Game #: 9951
player loses in 1 moves
Game #: 9952
player loses in 1 moves
Game #: 9953
player busts and loses in 1 moves
Game #: 9954
player loses in 2 moves
Game #: 9955
player loses in 1 moves
Game #: 9956
player wins in 0 moves
Game #: 9957
player loses in 1 moves
Game #: 9958
player wins in 0 moves
Game #: 9959
dealer busts and player wins in 1 moves
Game #: 9960
player loses in 1 moves
Game #: 9961
dealer busts and player wins in 1 moves
Game #: 9962
dealer busts and player wins in 1 moves
Game #: 9963
player loses in 1 moves
Game #: 9964
dealer busts and player wins in 1 moves
Game #: 9965
player wins in 1 moves
Game #: 9966
player wins in 0 moves
Game #: 9967
player loses in 1 moves
Game #: 9968
player wins in 0 moves
Game #: 9969
dealer busts and player wins in 2 moves
Game #: 9970
player busts and loses in 1 moves
Game #: 9971
draw in 1 moves
Game #: 9972
player wins in 1 moves
Game #: 9973
player wins in 0 moves
Game #: 9974
draw in 1 moves
Game #: 9975
player loses in 1 moves
Game #: 9976
draw in 1 moves
Game #: 9977
player loses in 1 moves
Game #: 9978
player wins in 1 moves
Game #: 9979
player loses in 1 moves
Game #: 9980
player loses in 1 moves
Game #: 9981
player busts and loses in 1 moves
Game #: 9982
player loses in 1 moves
Game #: 9983
player wins in 1 moves
Game #: 9984
player loses in 1 moves
Game #: 9985
dealer busts and player wins in 1 moves
Game #: 9986
draw in 1 moves
Game #: 9987
dealer busts and player wins in 1 moves
Game #: 9988
dealer busts and player wins in 1 moves
Game #: 9989
dealer busts and player wins in 1 moves
Game #: 9990
player wins in 0 moves
Game #: 9991
dealer busts and player wins in 1 moves
Game #: 9992
dealer busts and player wins in 1 moves
Game #: 9993
player loses in 1 moves
Game #: 9994
player loses in 1 moves
Game #: 9995
player loses in 1 moves
Game #: 9996
dealer busts and player wins in 1 moves
Game #: 9997
player busts and loses in 1 moves
Game #: 9998
player loses in 1 moves
Game #: 9999
player wins in 2 moves
: took time:84

In [16]:
df = pd.DataFrame(policy).T
df.columns = ['player_value', 'dealer_value', 'decision', 'score']
policy_Q_table = df.pivot('player_value', 'dealer_value')['decision']
display(policy_Q_table)


dealer_value 2 3 4 5 6 7 8 9 10 11
player_value
12 hit hit hit stay stay stay hit hit hit stay
13 hit stay stay stay stay stay hit hit stay hit
14 hit stay hit hit stay stay hit hit hit stay
15 hit stay stay hit stay hit hit hit hit hit
16 hit hit stay stay stay hit hit hit stay hit
17 stay hit stay stay stay stay stay hit stay stay
18 stay stay stay stay stay stay stay stay stay hit
19 stay stay stay stay stay stay stay stay stay stay
20 stay stay stay stay stay stay stay hit stay stay

In [17]:
policy_Q_score = df.pivot('player_value', 'dealer_value')['score']
display(policy_Q_score)


dealer_value 2 3 4 5 6 7 8 9 10 11
player_value
12 0.0613168 -0.399336 -0.213284 0.128974 -0.243427 -0.930203 0.345621 0.431037 -0.485527 -1.11185
13 -0.768248 0.730601 -0.414631 -0.565785 0.0338122 -0.666877 -0.87539 -0.768824 -0.402071 -1.05619
14 -0.153895 -0.228344 -1.05944 -0.620384 -0.246375 -0.731232 -0.814904 -0.344389 -0.818964 -1.05501
15 0.0534298 -0.306628 -0.42867 -0.118186 -0.0865505 -0.963465 -0.836104 -0.219936 -0.649517 -0.861295
16 -0.761069 -0.00468648 -0.108617 -0.469822 -0.527387 -1.10232 -0.480086 -0.788624 -0.450231 -0.184093
17 -0.169323 -0.846007 -0.130591 0.240887 -0.491864 -0.0871465 -0.227436 -0.975656 -0.345021 -0.250144
18 0.447949 -0.234779 0.265786 0.463712 0.342129 0.598225 0.330582 -0.699806 0.0276322 -0.324036
19 0.639932 0.0286975 -0.0775564 0.696859 0.573293 0.306188 -0.184254 0.61903 0.120829 0.0938779
20 0.561629 0.98176 0.841088 0.581907 0.908056 1.04507 1.24815 0.990895 0.623189 0.511135

In [14]:
blackjack = BlackJack()
test_policy(blackjack)


---------- Testing policy:-----------
Initial state:
state_info(player_value=17, dealer_value=6)
Move #: 1; Taking action: stay
state_info(player_value=17, dealer_value=24)
Summary: dealer busts and player wins :Player Reward: 1

In [ ]: